diff --git a/include/openspace/engine/settingsengine.h b/include/openspace/engine/settingsengine.h index 583abba854..ce79ac0996 100644 --- a/include/openspace/engine/settingsengine.h +++ b/include/openspace/engine/settingsengine.h @@ -27,18 +27,24 @@ #include #include +#include namespace openspace { class SettingsEngine : public properties::PropertyOwner { public: - SettingsEngine(); + SettingsEngine(); + + void initialize(); private: - properties::FloatProperty _eyeSeparation; + void initEyeSeparation(); + void initSceneFiles(); + + properties::FloatProperty _eyeSeparation; + properties::OptionProperty _scenes; }; } // namespace openspace - #endif //#ifndef __SETTINGSENGINE_H__ diff --git a/include/openspace/properties/optionproperty.h b/include/openspace/properties/optionproperty.h index 15eb71709f..50fea9aaeb 100644 --- a/include/openspace/properties/optionproperty.h +++ b/include/openspace/properties/optionproperty.h @@ -96,7 +96,7 @@ public: /** * Returns the list of available options. - * /return The list of available options + * \return The list of available options */ const std::vector