#ifndef __TASKRUNNER_H__ #define __TASKRUNNER_H__ #include #include #include namespace openspace { class TaskLoader { public: std::vector> tasksFromDictionary(const ghoul::Dictionary& dictionary); std::vector> tasksFromFile(const std::string& path); }; } #endif