diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-08-28 18:59:29 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-08-28 18:59:29 +0200 |
commit | 5da56616cccf4e595ec6a556cf1aef40b37746e3 (patch) | |
tree | 8142e294a251ca2ab1697f7541fe67dfd31622e0 /tasks.h | |
parent | 0597cb9854d66d918762ff167148516b69c02e9a (diff) |
Move sources to ... well, src ;)
Diffstat (limited to 'tasks.h')
-rw-r--r-- | tasks.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tasks.h b/tasks.h deleted file mode 100644 index 119c7d6..0000000 --- a/tasks.h +++ /dev/null @@ -1,18 +0,0 @@ -// -*- c++ -*- -#pragma once - -#include <string> -#include <list> -#include <memory> - -#include "task.h" - -class BuildConfiguration; -class Settings; - -std::list<std::shared_ptr<Task>> taskFactory(const BuildConfiguration& config, - const Settings& settings, - const std::string& sourceDir); -std::shared_ptr<Task> getNextTask(const std::list<std::shared_ptr<Task>>& allTasks, - std::list<std::shared_ptr<Task>>& dirtyTasks); -std::list<std::shared_ptr<Task>> getTasks(const Settings& settings); |