Enhancement - Object integration

- Began the big integration festival by moving all objects out of
  the sandbox.
- Hooked up one error message to context.stringtable, just to make
  a point.
This commit is contained in:
Paul Beckingham 2009-05-31 01:49:24 -04:00
parent fe4c8f3a9d
commit 97145fbb07
11 changed files with 36 additions and 12 deletions

View file

@ -68,6 +68,8 @@ StringTable::~StringTable ()
// ...
void StringTable::load (const std::string& file)
{
mMapping.clear (); // Allows dynamic reload.
std::ifstream in;
in.open (file.c_str (), std::ifstream::in);
if (in.good ())