diff options
Diffstat (limited to 'meegohandsetnotification/meegohandsetplugin.h')
-rw-r--r-- | meegohandsetnotification/meegohandsetplugin.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meegohandsetnotification/meegohandsetplugin.h b/meegohandsetnotification/meegohandsetplugin.h new file mode 100644 index 0000000..616fb9b --- /dev/null +++ b/meegohandsetnotification/meegohandsetplugin.h @@ -0,0 +1,24 @@ +#ifndef MEEGOHANDSETPLUGIN_H +#define MEEGOHANDSETPLUGIN_H + +#include <sowatch.h> + +namespace sowatch +{ + +class MeegoHandsetPlugin : public QObject, public NotificationPluginInterface +{ + Q_OBJECT + Q_INTERFACES(sowatch::NotificationPluginInterface) + +public: + MeegoHandsetPlugin(); + ~MeegoHandsetPlugin(); + + QStringList providers(); + NotificationProvider* getProvider(const QString& driver, QSettings& settings, QObject *parent = 0); +}; + +} + +#endif // MEEGOHANDSETPLUGIN_H |