542e0b4721bccea3231730ca7a6b716ab4e6617f
[mailer.git] / inc / classes / interfaces / io / output / class_OutputStreamer.php
1 <?php
2 /**
3  * An interface for output streams
4  * 
5  *
6  * @author      Roland Haeder <roland __NOSPAM__ [at] __REMOVE_ME__ mxchange [dot] org>
7  * @version     0.1
8  */
9 interface OutputStreamer extends Streamable {
10         /**
11          * Assigns a variable for output
12          *
13          * @param               $var            The variable we shall assign
14          * @param               $value  The value to store in the variable
15          * @return      void
16          */
17         function assignVariable ($var, $value);
18
19         /**
20          * Output the code
21          *
22          * @return      void
23          */
24         function output ($outStream=false);
25 }
26
27 //
28 ?>