0ad/source/i18n/TranslatedString.h
Ykkrosh 003bf13eb0 GCC fixes: things
This was SVN commit r1035.
2004-08-21 12:57:10 +00:00

29 lines
378 B
C++
Executable File

/*
Simple storage for translated phrases, made up of lots of TSComponents
(strings / variables / functions)
*/
#ifndef I18N_TSTRING_H
#define I18N_TSTRING_H
#include <vector>
namespace I18n
{
class TSComponent;
class TranslatedString
{
public:
std::vector<const TSComponent*> Parts;
unsigned char VarCount;
~TranslatedString();
};
}
#endif // I18N_TSTRING_H