diff options
author | xue <> | 2005-11-10 12:47:19 +0000 |
---|---|---|
committer | xue <> | 2005-11-10 12:47:19 +0000 |
commit | 55c4ac1bfe565f1ca7f537fdd8b7a201be28e581 (patch) | |
tree | a0599d5e36fdbb3f1e169ae56bab7d529597e3eb /framework/IO |
Initial import of prado framework
Diffstat (limited to 'framework/IO')
-rw-r--r-- | framework/IO/TTextWriter.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/framework/IO/TTextWriter.php b/framework/IO/TTextWriter.php new file mode 100644 index 00000000..17829acf --- /dev/null +++ b/framework/IO/TTextWriter.php @@ -0,0 +1,19 @@ +<?php
+
+class TTextWriter extends TComponent
+{
+ public function flush()
+ {
+ }
+
+ public function write($str)
+ {
+ }
+
+ public function writeLine($str='')
+ {
+ $this->write($str."\n");
+ }
+}
+
+?>
\ No newline at end of file |