- Pushed task lookup by ID and UUID down a level from TDB2 to TF2.  This allows
  reuse at the low level for things like proper dependency evaluation.
This commit is contained in:
Paul Beckingham
2012-07-08 16:04:34 -04:00
parent 88fcdab515
commit d59aaa6427
2 changed files with 49 additions and 62 deletions

View File

@@ -49,6 +49,9 @@ public:
const std::vector <Task>& get_tasks ();
const std::vector <std::string>& get_lines ();
bool get (int, Task&);
bool get (const std::string&, Task&);
void add_task (const Task&);
bool modify_task (const Task&);
void add_line (const std::string&);