summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
Diffstat (limited to 'framework')
-rw-r--r--framework/IO/TTextWriter.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/framework/IO/TTextWriter.php b/framework/IO/TTextWriter.php
deleted file mode 100644
index 5f6a92cb..00000000
--- a/framework/IO/TTextWriter.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-
-class TTextWriter extends TComponent implements ITextWriter
-{
- private $_str='';
-
- public function flush()
- {
- $str=$this->_str;
- $this->_str='';
- return $str;
- }
-
- public function write($str)
- {
- $this->_str.=$str;
- }
-
- public function writeLine($str='')
- {
- $this->write($str."\n");
- }
-}
-
-?> \ No newline at end of file