mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-08 04:06:48 +00:00
88724d5f95
This was SVN commit r2549.
7 lines
134 B
C++
Executable File
7 lines
134 B
C++
Executable File
class CStr : public std::string {};
|
|
class CStrW : public std::wstring
|
|
{
|
|
public:
|
|
CStrW(const std::wstring &s) : std::wstring(s) {}
|
|
};
|