Yet more cleanup

This commit is contained in:
Alexander Bock
2020-06-18 19:40:16 +02:00
parent a8c5d3bb91
commit b59b6cc2d2
4 changed files with 59 additions and 73 deletions

View File

@@ -147,9 +147,10 @@ public:
};
Profile() = default;
explicit Profile(const std::string& filename);
Profile(const std::vector<std::string>& content);
std::string serialize() const;
virtual ~Profile() {};
std::string convertToScene() const;
/**
* Saves all current settings, starting from the profile that was loaded at startup,
@@ -167,11 +168,6 @@ public:
ProfileData profile;
};
std::string serialize(const ProfileData& ps);
ProfileData deserialize(const std::vector<std::string>& content);
std::string convertToSceneFile(const ProfileData& ps);
} // namespace openspace
#endif // __OPENSPACE_CORE___PROFILE___H__