summaryrefslogtreecommitdiff
path: root/src/organizercore.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/organizercore.h')
-rw-r--r--src/organizercore.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/organizercore.h b/src/organizercore.h
index d4ce1500..22c4f19a 100644
--- a/src/organizercore.h
+++ b/src/organizercore.h
@@ -45,6 +45,9 @@ class GameFeatures;
class PluginContainer;
class DirectoryRefresher;
+#include <memory>
+#include <vector>
+
namespace MOBase
{
template <typename T>
@@ -270,6 +273,9 @@ public:
Profile* currentProfile() const { return m_CurrentProfile.get(); }
void setCurrentProfile(const QString& profileName);
+ QStringList profileNames() const;
+ std::shared_ptr<const MOBase::IProfile> getProfile(const QString& profileName) const;
+
std::vector<QString> enabledArchives();
MOBase::Version getVersion() const { return m_Updater.getVersion(); }