Developer forums (C::B DEVELOPMENT STRICTLY!) > Development

Events / Actions recommended string class

(1/1)

280Z28:
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?

Michael:
Hello,

ISO C++ string class?

Best wishes,
Michael

Michael:
Or may be CStdString?

Best wishes,
Michael

mmkider:
#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

280Z28:

--- Quote from: Michael on April 04, 2006, 12:00:55 pm ---Or may be CStdString?

Best wishes,
Michael


--- End quote ---

Thanks I'll go with this one :)

Navigation

[0] Message Index

Go to full version