diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2013-05-08 18:04:31 +0200 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2013-05-08 18:04:31 +0200 |
commit | ccd19d2b7ee4184503ea46b98333b27a5613190e (patch) | |
tree | f78cc3f3c946d7a4f8167f72fb20703c65494d84 /liveview/liveviewplugin.h | |
parent | 6003bf81107dd9be51589c074b74c5af82bfc8ab (diff) | |
download | sowatch-ccd19d2b7ee4184503ea46b98333b27a5613190e.tar.gz sowatch-ccd19d2b7ee4184503ea46b98333b27a5613190e.zip |
big change: a new abstract BluetoothWatch class
Diffstat (limited to 'liveview/liveviewplugin.h')
-rw-r--r-- | liveview/liveviewplugin.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/liveview/liveviewplugin.h b/liveview/liveviewplugin.h new file mode 100644 index 0000000..eb55249 --- /dev/null +++ b/liveview/liveviewplugin.h @@ -0,0 +1,25 @@ +#ifndef LIVEVIEWPLUGIN_H +#define LIVEVIEWPLUGIN_H + +#include <sowatch.h> + +namespace sowatch +{ + +class LiveViewPlugin : public QObject, public WatchPluginInterface { + Q_OBJECT + Q_INTERFACES(sowatch::WatchPluginInterface) + +public: + LiveViewPlugin(); + ~LiveViewPlugin(); + + QStringList drivers(); + WatchScanner* getScanner(QObject *parent); + QUrl getConfigQmlUrl(const QString &driver); + Watch* getWatch(const QString& driver, ConfigKey *settings, QObject *parent); +}; + +} + +#endif // LIVEVIEWPLUGIN_H |