summaryrefslogtreecommitdiff
path: root/task.cc
diff options
context:
space:
mode:
Diffstat (limited to 'task.cc')
-rw-r--r--task.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/task.cc b/task.cc
index 8c48543..962a02b 100644
--- a/task.cc
+++ b/task.cc
@@ -139,3 +139,8 @@ std::string Task::compiler() const
break;
}
}
+
+std::list<std::shared_ptr<Task>> Task::getDependsTasks()
+{
+ return dependsTasks;
+}