0ad/source/i18n/tests/CStr.h
Ykkrosh 88724d5f95 Updated i18n test system
This was SVN commit r2549.
2005-07-26 21:13:52 +00:00

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) {}
};