I've written a modular events system which has proven rock solid in another application. For that program, I use CString for my string class. Should I use std::wstring or wxString to make it cross-platform compatible?
Hello,
ISO C++ string class?
Best wishes,
Michael
Or may be CStdString (http://home.earthlink.net/~jmoleary/stdstring.htm)?
Best wishes,
Michael
#ifndef UNICODE
#define Ustring string
#else
#define Ustring wstring
#endif
I like std::string more than wxString.
You can defile flag to differentiate between Unicode and non-Unicode.i
Quote from: Michael on April 04, 2006, 12:00:55 PM
Or may be CStdString (http://home.earthlink.net/~jmoleary/stdstring.htm)?
Best wishes,
Michael
Thanks I'll go with this one :)