- Added ::has methods to determine whether a UUID is known.
This commit is contained in:
Paul Beckingham 2014-09-10 22:54:17 -04:00
parent 2028c7186c
commit 1058f045b0
2 changed files with 24 additions and 3 deletions

View file

@ -49,6 +49,7 @@ public:
bool get (int, Task&);
bool get (const std::string&, Task&);
bool has (const std::string&);
void add_task (Task&);
bool modify_task (const Task&);
@ -110,6 +111,7 @@ public:
const std::vector <Task> all_tasks ();
bool get (int, Task&);
bool get (const std::string&, Task&);
bool has (const std::string&);
const std::vector <Task> siblings (Task&);
const std::vector <Task> children (Task&);