summaryrefslogtreecommitdiffstats
path: root/sigtools/PluginLoader_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'sigtools/PluginLoader_p.h')
-rw-r--r--sigtools/PluginLoader_p.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/sigtools/PluginLoader_p.h b/sigtools/PluginLoader_p.h
index fa11988d..5597a45a 100644
--- a/sigtools/PluginLoader_p.h
+++ b/sigtools/PluginLoader_p.h
@@ -36,6 +36,10 @@ namespace Plugins
class PluginBase;
}
}
+namespace Sigmod
+{
+class Game;
+}
namespace Sigtools
{
@@ -50,10 +54,12 @@ class SIGTOOLS_NO_EXPORT Private : public QObject
QStringList services(const QString& type);
KService::Ptr service(const QString& type, const QString& name);
Sigencore::Plugins::PluginBase* factory(const QString& type, const QString& name);
+ Sigmod::Game* game(const QString& name);
protected:
typedef QPair<KService::Ptr, Sigencore::Plugins::PluginBase*> Service;
typedef QMap<QString, Service> PluginList;
QMap<QString, PluginList> m_available;
+ QMap<QString, Sigmod::Game*> m_games;
};
}
}