summaryrefslogtreecommitdiffstats
path: root/api/logic/BaseInstance.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2018-07-31 01:54:08 +0200
committerPetr Mrázek <peterix@gmail.com>2018-07-31 01:54:08 +0200
commit0c73ddee73e7383d5b81185381fa1c762fcb1147 (patch)
tree7193eb7bdd3e836ab8f150d3575d866bb2df3d9d /api/logic/BaseInstance.h
parent9965decd81b8e8ca98d610f605263ccf4ce541e1 (diff)
downloadMultiMC-0c73ddee73e7383d5b81185381fa1c762fcb1147.tar
MultiMC-0c73ddee73e7383d5b81185381fa1c762fcb1147.tar.gz
MultiMC-0c73ddee73e7383d5b81185381fa1c762fcb1147.tar.lz
MultiMC-0c73ddee73e7383d5b81185381fa1c762fcb1147.tar.xz
MultiMC-0c73ddee73e7383d5b81185381fa1c762fcb1147.zip
NOISSUE set groups for instances by not setting groups for instances
So simple. Better in every way.
Diffstat (limited to 'api/logic/BaseInstance.h')
-rw-r--r--api/logic/BaseInstance.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/api/logic/BaseInstance.h b/api/logic/BaseInstance.h
index 09d21b2e..04788eb7 100644
--- a/api/logic/BaseInstance.h
+++ b/api/logic/BaseInstance.h
@@ -68,7 +68,6 @@ public:
/// virtual destructor to make sure the destruction is COMPLETE
virtual ~BaseInstance() {};
- virtual void init() = 0;
virtual void saveNow() = 0;
/***
@@ -112,10 +111,6 @@ public:
QString notes() const;
void setNotes(QString val);
- QString group() const;
- void setGroupInitial(QString val);
- void setGroupPost(QString val);
-
QString getPreLaunchCommand();
QString getPostExitCommand();
QString getWrapperCommand();
@@ -245,10 +240,6 @@ signals:
* \brief Signal emitted when properties relevant to the instance view change
*/
void propertiesChanged(BaseInstance *inst);
- /*!
- * \brief Signal emitted when groups are affected in any way
- */
- void groupChanged();
void launchTaskChanged(std::shared_ptr<LaunchTask>);
@@ -261,7 +252,6 @@ protected slots:
protected: /* data */
QString m_rootDir;
- QString m_group;
SettingsObjectPtr m_settings;
// InstanceFlags m_flags;
bool m_isRunning = false;