1
1
forked from 0ad/0ad
0ad/source/i18n/TranslatedString.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

29 lines
426 B
C++

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