mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-01 16:29:43 -05:00
Only make an internalInitialize in OpenSpaceModule that accepts a ghoul::Dictionary
This commit is contained in:
@@ -47,7 +47,7 @@ namespace openspace {
|
||||
|
||||
SpaceModule::SpaceModule() : OpenSpaceModule(Name) {}
|
||||
|
||||
void SpaceModule::internalInitialize() {
|
||||
void SpaceModule::internalInitialize(const ghoul::Dictionary&) {
|
||||
FactoryManager::ref().addFactory(
|
||||
std::make_unique<ghoul::TemplateFactory<planetgeometry::PlanetGeometry>>(),
|
||||
"PlanetGeometry"
|
||||
|
||||
@@ -37,8 +37,8 @@ public:
|
||||
virtual ~SpaceModule() = default;
|
||||
std::vector<documentation::Documentation> documentations() const override;
|
||||
|
||||
protected:
|
||||
void internalInitialize() override;
|
||||
private:
|
||||
void internalInitialize(const ghoul::Dictionary&) override;
|
||||
};
|
||||
|
||||
} // namespace openspace
|
||||
|
||||
Reference in New Issue
Block a user