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