blob: 17829acf6a0e431e3a90382a6362b324bf3c9d27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
class TTextWriter extends TComponent
{
public function flush()
{
}
public function write($str)
{
}
public function writeLine($str='')
{
$this->write($str."\n");
}
}
?>
|