2 Copyright (C) 2001-2006, William Joseph.
5 This file is part of GtkRadiant.
7 GtkRadiant is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 GtkRadiant is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GtkRadiant; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #if !defined( INCLUDED_STREAM_TEXTFILESTREAM_H )
23 #define INCLUDED_STREAM_TEXTFILESTREAM_H
25 #include "itextstream.h"
28 /// \brief A wrapper around a file input stream opened for reading in text mode. Similar to std::ifstream.
29 class TextFileInputStream : public TextInputStream
33 TextFileInputStream( const char* name ){
34 m_file = name[0] == '\0' ? 0 : fopen( name, "rt" );
36 ~TextFileInputStream(){
46 std::size_t read( char* buffer, std::size_t length ){
47 return fread( buffer, 1, length, m_file );
51 /// \brief A wrapper around a file input stream opened for writing in text mode. Similar to std::ofstream.
52 class TextFileOutputStream : public TextOutputStream
56 TextFileOutputStream( const char* name ){
57 m_file = name[0] == '\0' ? 0 : fopen( name, "wt" );
59 ~TextFileOutputStream(){
69 std::size_t write( const char* buffer, std::size_t length ){
70 return fwrite( buffer, 1, length, m_file );
75 inline TextFileOutputStream& operator<<( TextFileOutputStream& ostream, const T& t ){
76 return ostream_write( ostream, t );