mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-03 01:59:35 -06:00
Conflicts: modules/volume/CMakeLists.txt modules/volume/linearlrucache.h src/engine/openspaceengine.cpp
18 lines
377 B
C++
18 lines
377 B
C++
#ifndef __TASKRUNNER_H__
|
|
#define __TASKRUNNER_H__
|
|
|
|
#include <string>
|
|
#include <ghoul/misc/dictionary.h>
|
|
#include <openspace/util/task.h>
|
|
|
|
namespace openspace {
|
|
class TaskLoader {
|
|
public:
|
|
std::vector<std::unique_ptr<Task>> tasksFromDictionary(const ghoul::Dictionary& dictionary);
|
|
std::vector<std::unique_ptr<Task>> tasksFromFile(const std::string& path);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|