#ifndef HARMACCUPLUGIN_H #define HARMACCUPLUGIN_H #include namespace sowatch { class HarmAccuPlugin : public QObject, public NotificationPluginInterface { Q_OBJECT Q_INTERFACES(sowatch::NotificationPluginInterface) public: HarmAccuPlugin(QObject *parent = 0); ~HarmAccuPlugin(); QStringList providers(); NotificationProviderInfo describeProvider(const QString &driver); NotificationProvider* getProvider(const QString& driver, ConfigKey *settings, QObject *parent = 0); }; } #endif // HARMACCUPLUGIN_H