mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 17:07:19 +02:00
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:
parent
2e5e20e3e5
commit
b7866b7434
9 changed files with 87 additions and 45 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue