Enhancement - StringTable integration

- StringTable now integrated into Context.
- Docs updated for new "locale" configuration variable.
- StringTable unit tests implemented.
This commit is contained in:
Paul Beckingham 2009-05-28 17:59:55 -04:00
parent 8627a924f7
commit 54789082c9
9 changed files with 134 additions and 13 deletions

View file

@ -39,7 +39,7 @@ public:
~StringTable (); // Destructor
void load (const std::string&);
std::string get (int);
std::string get (int, const std::string&);
private:
std::map <int, std::string> mMapping;