Enhancement - FF4 Parsing

- Implemented TDB::load
- Changed Record to inherit from std::map <std::string, Att>
- Changed Filter to inherit from std::vector <Att>
This commit is contained in:
Paul Beckingham 2009-05-23 23:29:47 -04:00
parent 2e5e20e3e5
commit b7866b7434
9 changed files with 87 additions and 45 deletions

View file

@ -38,7 +38,6 @@ Att::Att ()
////////////////////////////////////////////////////////////////////////////////
Att::Att (const std::string& name, const std::string& value)
{
throw std::string ("unimplemented Att::Att");
mName = name;
mValue = value;
@ -48,7 +47,6 @@ Att::Att (const std::string& name, const std::string& value)
////////////////////////////////////////////////////////////////////////////////
Att::Att (const Att& other)
{
throw std::string ("unimplemented Att::Att");
mName = other.mName;
mValue = other.mValue;
mMods = other.mMods;