diff options
author | Andrew <forkk@forkk.net> | 2013-02-20 19:10:09 -0600 |
---|---|---|
committer | Andrew <forkk@forkk.net> | 2013-02-20 19:10:09 -0600 |
commit | dd2e836b4cf4cfa043f9ea2911f58f1d22d4e282 (patch) | |
tree | 07e99dd9c2858e2e46075a649751049c3195b437 /plugins/stdinstance/stdinstancetype.h | |
parent | f71479ec33562c9a0ebbdb335bef5e2824a12710 (diff) | |
download | PrismLauncher-dd2e836b4cf4cfa043f9ea2911f58f1d22d4e282.tar.gz PrismLauncher-dd2e836b4cf4cfa043f9ea2911f58f1d22d4e282.tar.bz2 PrismLauncher-dd2e836b4cf4cfa043f9ea2911f58f1d22d4e282.zip |
Split MultiMC up into a few separate libraries.
Fixed plugin system.
Tons of other stuff...
Diffstat (limited to 'plugins/stdinstance/stdinstancetype.h')
-rw-r--r-- | plugins/stdinstance/stdinstancetype.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/stdinstance/stdinstancetype.h b/plugins/stdinstance/stdinstancetype.h index 9516aa80..4f659ba7 100644 --- a/plugins/stdinstance/stdinstancetype.h +++ b/plugins/stdinstance/stdinstancetype.h @@ -16,11 +16,15 @@ #ifndef STDINSTANCETYPE_H #define STDINSTANCETYPE_H -#include <data/inst/instancetype.h> +#include <instancetypeinterface.h> -class StdInstanceType : public InstanceType +#define StdInstanceType_IID "net.forkk.MultiMC.StdInstanceType/0.1" + +class StdInstanceType : public QObject, InstanceTypeInterface { Q_OBJECT + Q_PLUGIN_METADATA(IID StdInstanceType_IID FILE "stdinstance.json") + Q_INTERFACES(InstanceTypeInterface) public: explicit StdInstanceType(QObject *parent = 0); |