mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-09 04:26:23 +00:00
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) {}
|
|
};
|