diff options
author | Petr Mrázek <peterix@gmail.com> | 2016-10-03 00:55:54 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2016-10-26 18:21:24 +0200 |
commit | d66fdcd4cc6913508d2987c14cd9fc4d6760b8a5 (patch) | |
tree | 4f385106ce732d4f7338feab5391f2a06c68a0e6 /application/MultiMC.h | |
parent | bbe139dce51a7965394c800cac974946820d3869 (diff) | |
download | MultiMC-d66fdcd4cc6913508d2987c14cd9fc4d6760b8a5.tar MultiMC-d66fdcd4cc6913508d2987c14cd9fc4d6760b8a5.tar.gz MultiMC-d66fdcd4cc6913508d2987c14cd9fc4d6760b8a5.tar.lz MultiMC-d66fdcd4cc6913508d2987c14cd9fc4d6760b8a5.tar.xz MultiMC-d66fdcd4cc6913508d2987c14cd9fc4d6760b8a5.zip |
NOISSUE Granular instance reload
Diffstat (limited to 'application/MultiMC.h')
-rw-r--r-- | application/MultiMC.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/application/MultiMC.h b/application/MultiMC.h index 3b8751c1..02038578 100644 --- a/application/MultiMC.h +++ b/application/MultiMC.h @@ -7,6 +7,7 @@ #include <QIcon> #include <QDateTime> #include <updater/GoUpdate.h> +class FolderInstanceProvider; class GenericPageProvider; class QFile; @@ -91,6 +92,11 @@ public: return m_instances; } + FolderInstanceProvider * folderProvider() + { + return m_instanceFolder; + } + std::shared_ptr<IconList> icons() { return m_icons; @@ -164,6 +170,7 @@ private: std::shared_ptr<QTranslator> m_mmc_translator; std::shared_ptr<SettingsObject> m_settings; std::shared_ptr<InstanceList> m_instances; + FolderInstanceProvider * m_instanceFolder; std::shared_ptr<IconList> m_icons; std::shared_ptr<UpdateChecker> m_updateChecker; std::shared_ptr<MojangAccountList> m_accounts; |