core code merged, interfaces OutputStreamer implemented
[shipsimu.git] / inc / classes / interfaces / io / output / class_OutputStreamer.php
index 6e4431f92ce5fdd1ac6bdec672d2aaac52e356d2..a803a46995788700ed195f397a6b40dbed2dbbbb 100644 (file)
@@ -2,10 +2,11 @@
 /**
  * An interface for output streams
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
- * @version            0.0
+ * @author             Roland Haeder <webmaster@mxchange.org>
+ * @version            0.3.0
  * @copyright  Copyright(c) 2007, 2008 Roland Haeder, this is free software
  * @license            GNU GPL 3.0 or any newer version
+ * @link               http://www.mxchange.org
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -28,14 +29,14 @@ interface OutputStreamer extends Streamable {
         * @param               $value  The value to store in the variable
         * @return      void
         */
-       function assignVariable($var, $value);
+       function assignVariable ($var, $value);
 
        /**
         * Output the code
         *
         * @return      void
         */
-       function output($outStream=false);
+       function output ($outStream=false);
 }
 
 //