Work on data management. Add some tests

This commit is contained in:
Emil Axelsson
2017-10-13 16:56:53 +02:00
parent f60b78fb44
commit 18c50afeb5
17 changed files with 359 additions and 83 deletions
+3 -2
View File
@@ -75,7 +75,8 @@ class OpenSpaceEngine {
public:
static void create(int argc, char** argv,
std::unique_ptr<WindowWrapper> windowWrapper,
std::vector<std::string>& sgctArguments, bool& requestClose);
std::vector<std::string>& sgctArguments,
bool& requestClose, bool consoleLog = true);
static void destroy();
static OpenSpaceEngine& ref();
static bool isCreated();
@@ -180,7 +181,7 @@ private:
void loadSingleAsset(const std::string& assetPath);
void gatherCommandlineArguments();
void loadFonts();
void configureLogging();
void configureLogging(bool consoleLog);
// Components
std::unique_ptr<ConfigurationManager> _configurationManager;