|
From: andrew7 <bd...@us...> - 2006-11-30 00:47:09
|
Update of /cvsroot/smartwin/SmartWin/SmartUtil In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv23790/SmartUtil Modified Files: tstring.h Log Message: Add tiostream Index: tstring.h =================================================================== RCS file: /cvsroot/smartwin/SmartWin/SmartUtil/tstring.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- tstring.h 9 Sep 2006 15:37:32 -0000 1.7 +++ tstring.h 30 Nov 2006 00:47:06 -0000 1.8 @@ -53,7 +53,12 @@ # if defined _ISTREAM_ || defined _GLIBCXX_ISTREAM typedef std::wistream tistream; # endif //_ISTREAM_ -# if defined _FSTREAM_ || defined _GLIBCXX_FSTREAM +# if defined _OSTREAM_ || defined _GLIBCXX_OSTREAM +# if defined _ISTREAM_ || defined _GLIBCXX_ISTREAM + typedef std::wiostream tiostream; +# endif //_ISTREAM_ +# endif //_OSTREAM_ +# if defined _IOSFWD_ || defined _FSTREAM_ || defined _GLIBCXX_FSTREAM typedef std::wfilebuf tfilebuf; typedef std::wfstream tfstream; typedef std::wifstream tifstream; @@ -74,7 +79,12 @@ # if defined _ISTREAM_ || defined _GLIBCXX_ISTREAM typedef std::istream tistream; # endif //_ISTREAM_ -# if defined _FSTREAM_ || defined _GLIBCXX_FSTREAM +# if defined _OSTREAM_ || defined _GLIBCXX_OSTREAM +# if defined _ISTREAM_ || defined _GLIBCXX_ISTREAM + typedef std::iostream tiostream; +# endif //_ISTREAM_ +# endif //_OSTREAM_ +# if defined _IOSFWD_ || defined _FSTREAM_ || defined _GLIBCXX_FSTREAM typedef std::filebuf tfilebuf; typedef std::fstream tfstream; typedef std::ifstream tifstream; |