1
1
forked from 0ad/0ad
0ad/source/i18n/Common.h
janwas b755ddefda remove all author/modified by tags.
make include guards consistent.

This was SVN commit r5040.
2007-05-07 16:33:24 +00:00

21 lines
330 B
C++

// Things that are used by most I18n code:
#ifndef INCLUDED_I18N_COMMON
#define INCLUDED_I18N_COMMON
#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 // INCLUDED_I18N_COMMON