Code Cleanup

- Added declared but unimplemented copy constructors and assignment
  operators.
This commit is contained in:
Paul Beckingham 2009-06-23 00:00:50 -04:00
parent c6a56d444e
commit e59e35ae29
9 changed files with 29 additions and 0 deletions

View file

@ -36,6 +36,9 @@ public:
StringTable (); // Default constructor
~StringTable (); // Destructor
StringTable (const StringTable&);
StringTable& operator= (const StringTable&);
void load (const std::string&);
std::string get (int, const std::string&);
};