summaryrefslogtreecommitdiff
path: root/framework/IO/TTextWriter.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/IO/TTextWriter.php')
-rw-r--r--framework/IO/TTextWriter.php19
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