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