More work on documentation

This commit is contained in:
Alexander Bock
2017-07-25 18:06:55 -04:00
parent e93070504b
commit d95576077b
31 changed files with 1215 additions and 307 deletions

View File

@@ -24,6 +24,7 @@
#include <modules/debugging/debuggingmodule.h>
#include <openspace/documentation/documentation.h>
#include <openspace/rendering/renderable.h>
#include <openspace/util/factorymanager.h>
@@ -42,4 +43,11 @@ void DebuggingModule::internalInitialize() {
fRenderable->registerClass<RenderableDebugPlane>("RenderableDebugPlane");
}
std::vector<documentation::Documentation> DebuggingModule::documentations() const {
return {
RenderableDebugPlane::Documentation()
};
}
} // namespace openspace

View File

@@ -35,6 +35,8 @@ public:
DebuggingModule();
std::vector<documentation::Documentation> documentations() const override;
protected:
void internalInitialize() override;
};