summaryrefslogtreecommitdiffstats
path: root/subsurface-core/pluginmanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'subsurface-core/pluginmanager.h')
-rw-r--r--subsurface-core/pluginmanager.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/subsurface-core/pluginmanager.h b/subsurface-core/pluginmanager.h
new file mode 100644
index 000000000..c4943895c
--- /dev/null
+++ b/subsurface-core/pluginmanager.h
@@ -0,0 +1,19 @@
+#ifndef PLUGINMANAGER_H
+#define PLUGINMANAGER_H
+
+#include <QObject>
+
+#include "isocialnetworkintegration.h"
+
+class PluginManager {
+public:
+ static PluginManager& instance();
+ void loadPlugins();
+ QList<ISocialNetworkIntegration*> socialNetworkIntegrationPlugins() const;
+private:
+ PluginManager();
+ PluginManager(const PluginManager&) = delete;
+ PluginManager& operator=(const PluginManager&) = delete;
+};
+
+#endif \ No newline at end of file