From e2cf2ab253d32147e079a817f692f5c87b635c7e Mon Sep 17 00:00:00 2001 From: Jonas Suhr Christensen Date: Thu, 3 May 2012 17:14:23 +0200 Subject: Added breadth first search tour --- src/tasktree.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/tasktree.h') diff --git a/src/tasktree.h b/src/tasktree.h index 6623b0f..aeeddfc 100644 --- a/src/tasktree.h +++ b/src/tasktree.h @@ -55,7 +55,9 @@ public: TaskIdList move(taskid_t id, taskid_t newParentId) throw (std::exception); TaskIdList updateData(taskid_t id, task_t t) throw (std::exception); task_t getData(taskid_t id) throw (std::exception); - + + TaskIdList bfs(taskid_t id) throw (std::exception); + TaskIdList ancestorList(taskid_t id) throw (std::exception); void toStdOut(); -- cgit v1.2.3