blob: ef03d813d2eda0de757c2bf3f8d11f0a10ff94c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef SOWATCH_WATCHLETPLUGININTERFACE_H
#define SOWATCH_WATCHLETPLUGININTERFACE_H
#include <QtPlugin>
#include <QtCore/QSettings>
#include <QtCore/QStringList>
#include "sowatch_global.h"
namespace sowatch
{
class ConfigKey;
class Watchlet;
class WatchServer;
class SOWATCH_EXPORT WatchletPluginInterface
{
public:
virtual ~WatchletPluginInterface();
virtual QStringList watchlets() = 0;
virtual Watchlet* getWatchlet(const QString& id, ConfigKey *settings, WatchServer *server) = 0;
};
}
Q_DECLARE_INTERFACE(sowatch::WatchletPluginInterface, "com.javispedro.sowatch.WatchletPluginInterface")
#endif // SOWATCH_WATCHLETPLUGININTERFACE_H
|