mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
4ddf4f6d83
Make Dirk ungrumpy Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
19 lines
No EOL
399 B
C++
19 lines
No EOL
399 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 |