On Sat, 4 Oct 2003 15:46:13 +0300 (EEST) Nerijus Baliunas <[EMAIL PROTECTED]> wrote:

NB> On Sat, 4 Oct 2003 14:28:42 +0200 (Romance Daylight Time) Vadim Zeitlin <[EMAIL 
PROTECTED]> wrote:
NB> 
NB> VZ> and ifstream should be replaced by wfstream in Unicode mode.
NB> 
NB> /usr/include/c++/3.2.2/iosfwd:
NB> 
NB> #ifdef _GLIBCPP_USE_WCHAR_T
NB> ...
NB>   typedef basic_ifstream<wchar_t>       wifstream;

 Yes, sorry, it was a typo. wifstream indeed. But the point remains that
you must do your own

        #ifdef UNICODE
                typedef wifstream Ifstream;
        #else
                typedef ifstream Ifstream;
        #endif

which is painful whereas wxWin already does it for all std C stuff.

VZ



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Mahogany-Developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-developers

Reply via email to