mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
b8c71ef6cd
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
19 lines
396 B
C++
19 lines
396 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&);
|
|
PluginManager& operator=(const PluginManager&);
|
|
};
|
|
|
|
#endif
|