Added new interfaces for file i/o classes.
[core.git] / inc / classes / interfaces / io / output / class_OutputStreamer.php
index 4cfaa682555d9b55624df38cfaa613881165b97b..70a08177d90af21cc552e746816e1b6e75f059df 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * An interface for output streams
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.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
@@ -25,9 +25,11 @@ interface OutputStreamer extends Streamable {
        /**
         * Output the code
         *
+        * @param       $outStream      Stream to output
+        * @param       $stripTags      Whether HTML tags shall be stripped out
         * @return      void
         */
-       function output ($outStream = false);
+       function output ($outStream = FALSE, $stripTags = FALSE);
 }
 
 // [EOF]