From 903ae8a581fac1e6917fc3e31d2ad8fb91df80c3 Mon Sep 17 00:00:00 2001 From: ctrlaltca <> Date: Thu, 12 Jul 2012 11:21:01 +0000 Subject: standardize the use of unix eol; use svn properties to enforce native eol --- framework/IO/TTextWriter.php | 116 +++++++++++++++++++++---------------------- 1 file changed, 58 insertions(+), 58 deletions(-) (limited to 'framework/IO/TTextWriter.php') diff --git a/framework/IO/TTextWriter.php b/framework/IO/TTextWriter.php index 344344cc..38421539 100644 --- a/framework/IO/TTextWriter.php +++ b/framework/IO/TTextWriter.php @@ -1,59 +1,59 @@ - - * @link http://www.pradosoft.com/ + + * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2012 PradoSoft - * @license http://www.pradosoft.com/license/ - * @version $Id$ - * @package System.IO - */ - -/** - * TTextWriter class. - * - * TTextWriter implements a memory-based text writer. - * Content written by TTextWriter are stored in memory - * and can be obtained by calling {@link flush()}. - * - * @author Qiang Xue - * @version $Id$ - * @package System.IO - * @since 3.0 - */ -class TTextWriter extends TComponent implements ITextWriter -{ - private $_str=''; - - /** - * Flushes the content that has been written. - * @return string the content being flushed - */ - public function flush() - { - $str=$this->_str; - $this->_str=''; - return $str; - } - - /** - * Writes a string. - * @param string string to be written - */ - public function write($str) - { - $this->_str.=$str; - } - - /** - * Writers a string and terminates it with a newline. - * @param string content to be written - * @see write - */ - public function writeLine($str='') - { - $this->write($str."\n"); - } -} - + * @license http://www.pradosoft.com/license/ + * @version $Id$ + * @package System.IO + */ + +/** + * TTextWriter class. + * + * TTextWriter implements a memory-based text writer. + * Content written by TTextWriter are stored in memory + * and can be obtained by calling {@link flush()}. + * + * @author Qiang Xue + * @version $Id$ + * @package System.IO + * @since 3.0 + */ +class TTextWriter extends TComponent implements ITextWriter +{ + private $_str=''; + + /** + * Flushes the content that has been written. + * @return string the content being flushed + */ + public function flush() + { + $str=$this->_str; + $this->_str=''; + return $str; + } + + /** + * Writes a string. + * @param string string to be written + */ + public function write($str) + { + $this->_str.=$str; + } + + /** + * Writers a string and terminates it with a newline. + * @param string content to be written + * @see write + */ + public function writeLine($str='') + { + $this->write($str."\n"); + } +} + -- cgit v1.2.3