FF4 - Snapshot

- Objects ready for implementation.
- Removed template X.h X.cpp.
This commit is contained in:
Paul Beckingham 2009-05-16 17:50:30 -04:00
parent 69ed1e0ebb
commit 7a03d819a0
12 changed files with 47 additions and 147 deletions

View file

@ -35,14 +35,14 @@ Record::Record ()
////////////////////////////////////////////////////////////////////////////////
Record::Record (const Record& other)
{
throw std::string ("unimplemented");
throw std::string ("unimplemented Record::Record");
mAtts = other.mAtts;
}
////////////////////////////////////////////////////////////////////////////////
Record& Record::operator= (const Record& other)
{
throw std::string ("unimplemented");
throw std::string ("unimplemented Record:operator=");
if (this != &other)
{
mAtts = other.mAtts;