1
0
forked from 0ad/0ad
0ad/source/i18n/StringBuffer.h
Ykkrosh 0e55379b36 Initial i18n integration
This was SVN commit r1029.
2004-08-21 11:45:01 +00:00

49 lines
972 B
C++
Executable File

/*
Returned by Translate(), and used to collect variables from the user
before converting into a string.
*/
#ifndef I18N_STRINGBUF_H
#define I18N_STRINGBUF_H
#include "Common.h"
#include "TranslatedString.h"
namespace I18n
{
class CLocale;
class BufferVariable;
template<typename T> BufferVariable* NewBufferVariable(T v);
class StringBuffer
{
friend CLocale;
public:
// Builds and returns the finished string
operator Str();
// Stores the variable inside the StringBuffer,
// for later conversion into a string
template<typename T> StringBuffer& operator<< (T v)
{
// This BufferVariable is freed by the caching system (yuck)
Variables.push_back(NewBufferVariable(v));
return *this;
}
// Returns a simple hash of the contents of Variables
u32 Hash();
private:
StringBuffer(TranslatedString&, CLocale*);
TranslatedString& String;
std::vector<BufferVariable*> Variables;
CLocale* Locale;
};
}
#endif I18N_STRINGBUF_H