From 5da56616cccf4e595ec6a556cf1aef40b37746e3 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sat, 28 Aug 2021 18:59:29 +0200 Subject: Move sources to ... well, src ;) --- src/tasks.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/tasks.h (limited to 'src/tasks.h') diff --git a/src/tasks.h b/src/tasks.h new file mode 100644 index 0000000..119c7d6 --- /dev/null +++ b/src/tasks.h @@ -0,0 +1,18 @@ +// -*- c++ -*- +#pragma once + +#include +#include +#include + +#include "task.h" + +class BuildConfiguration; +class Settings; + +std::list> taskFactory(const BuildConfiguration& config, + const Settings& settings, + const std::string& sourceDir); +std::shared_ptr getNextTask(const std::list>& allTasks, + std::list>& dirtyTasks); +std::list> getTasks(const Settings& settings); -- cgit v1.2.3