summaryrefslogtreecommitdiff
path: root/task.h
diff options
context:
space:
mode:
Diffstat (limited to 'task.h')
-rw-r--r--task.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/task.h b/task.h
index 6e71db6..98363a1 100644
--- a/task.h
+++ b/task.h
@@ -44,6 +44,8 @@ public:
OutputSystem outputSystem() const;
std::string compiler() const;
+ std::list<std::shared_ptr<Task>> getDependsTasks();
+
protected:
std::atomic<State> task_state{State::Unknown};
virtual int runInner() { return 0; };