0ad/source/i18n/Common.h
Ykkrosh 0e55379b36 Initial i18n integration
This was SVN commit r1029.
2004-08-21 11:45:01 +00:00

21 lines
306 B
C++
Executable File

// Things that are used by most I18n code:
#ifndef I18N_COMMON_H
#define I18N_COMMON_H
#include <string>
#include "Errors.h"
namespace I18n
{
// Define an 'internal' string type, for no particular reason
typedef std::wstring Str;
}
ERROR_GROUP(I18n);
// That was exciting.
#endif // I18N_COMMON_H