- Remove documentation.h include and replace with forward declaration

- Move Documentation struct into documentation namespace
This commit is contained in:
Alexander Bock
2017-03-01 18:13:15 -05:00
parent 6748305267
commit 8fd60ce8e6
67 changed files with 195 additions and 161 deletions

View File

@@ -25,7 +25,6 @@
#ifndef __OPENSPACE_CORE___SCRIPTSCHEDULER___H__
#define __OPENSPACE_CORE___SCRIPTSCHEDULER___H__
#include <openspace/documentation/documentation.h>
#include <openspace/scripting/lualibrary.h>
#include <queue>
@@ -36,6 +35,7 @@ class Dictionary;
} // namespace ghoul
namespace openspace {
namespace documentation { struct Documentation; }
namespace scripting {
/**
@@ -111,7 +111,7 @@ public:
static LuaLibrary luaLibrary();
static openspace::Documentation Documentation();
static documentation::Documentation Documentation();
private:
std::vector<double> _timings;