Why many libraries define own string classes instead of using std::string and std::wstring?
- by Anton Kazennikov
Why many libraries define their own string classes instead of using string classes from STL?
For example, xerces-c - it uses std::basic_string<, but uses its own char type instead of wchar_t. Why?
Or MFC, for example?