1
0
forked from 0ad/0ad
0ad/source/i18n/Common.h
janwas f7e82dbc16 add ps/Errors.h and/or lib/types.h headers (shouldn't rely on precompiled.h to pull those in).
also prepended ps/ to make location clear.

This was SVN commit r1652.
2005-01-07 00:47:44 +00:00

21 lines
309 B
C++
Executable File

// Things that are used by most I18n code:
#ifndef I18N_COMMON_H
#define I18N_COMMON_H
#include <string>
#include "ps/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