mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-20 06:45:27 +00:00
19 lines
413 B
C
19 lines
413 B
C
|
#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
|