Correctly expose missing documentation from a bunch of classes (closes #1856)

This commit is contained in:
Alexander Bock
2022-01-26 23:41:48 +01:00
parent 2cf268abf0
commit 162141f2db
38 changed files with 127 additions and 15 deletions

View File

@@ -25,6 +25,7 @@
#include <modules/atmosphere/atmospheremodule.h>
#include <modules/atmosphere/rendering/renderableatmosphere.h>
#include <openspace/documentation/documentation.h>
#include <openspace/rendering/renderable.h>
#include <openspace/util/factorymanager.h>
#include <ghoul/misc/assert.h>
@@ -40,4 +41,9 @@ void AtmosphereModule::internalInitialize(const ghoul::Dictionary&) {
fRenderable->registerClass<RenderableAtmosphere>("RenderableAtmosphere");
}
std::vector<documentation::Documentation> AtmosphereModule::documentations() const {
return {
RenderableAtmosphere::Documentation()
};
}
} // namespace openspace