Prepare for data sync

This commit is contained in:
Emil Axelsson
2017-09-14 20:16:51 +02:00
parent 4cdae984e9
commit af8bec1441
20 changed files with 925 additions and 604 deletions

View File

@@ -1,4 +1,4 @@
/*****************************************************************************************
/*****************************************************************************************
* *
* OpenSpace *
* *
@@ -24,40 +24,23 @@
#include "httpsynchronization.h"
#include <openspace/util/asynchttprequest.h>
namespace openspace {
HttpSynchronization::HttpSynchronization(const ghoul::Dictionary& dict)
: openspace::ResourceSynchronization()
{
}
bool HttpSynchronization::needsSync() {
return true;
}
std::shared_ptr<SynchronizationJob> HttpSynchronization::createSynchronizationJob() {
return std::make_shared<HttpSynchronizationJob>();
}
documentation::Documentation HttpSynchronization::Documentation() {
return {};
}
HttpSynchronizationJob::HttpSynchronizationJob() {
}
HttpSynchronizationJob::~HttpSynchronizationJob() {
}
void HttpSynchronizationJob::execute() {
}
std::shared_ptr<SynchronizationProduct> HttpSynchronizationJob::product() {
return nullptr;
}
} // namespace openspace