forked from mirrors/0ad
5f7875a243
This was SVN commit r3959.
7 lines
134 B
C++
7 lines
134 B
C++
class CStr : public std::string {};
|
|
class CStrW : public std::wstring
|
|
{
|
|
public:
|
|
CStrW(const std::wstring &s) : std::wstring(s) {}
|
|
};
|