Work on asset synchronization and initialization

This commit is contained in:
Emil Axelsson
2017-10-16 19:06:33 +02:00
parent 2623912ec9
commit 81298f10be
16 changed files with 335 additions and 220 deletions
+6 -2
View File
@@ -35,11 +35,15 @@ namespace openspace {
class HttpSynchronization : public ResourceSynchronization {
public:
HttpSynchronization(const ghoul::Dictionary& dict);
bool needsSync() override;
void start();
static documentation::Documentation Documentation();
};
class HttpSynchronizationJob : public SynchronizationJob {
HttpSynchronizationJob(std::shared_ptr<ResourceSynchronization> synchronization);
void execute() override;
};
} // namespace openspace
#endif // __OPENSPACE_MODULE_SYNC___HTTPSYNCHRONIZATION___H__