summaryrefslogtreecommitdiff
path: root/metawatch/metawatchplugin.h
blob: d0e7c91ffbea862efd866bec19c6465a02f2d29b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef METAWATCHPLUGIN_H
#define METAWATCHPLUGIN_H

#include <sowatch.h>

namespace sowatch
{

class MetaWatchPlugin : public QObject, public WatchPluginInterface {
	Q_OBJECT
	Q_INTERFACES(WatchPluginInterface)

public:
	~MetaWatchPlugin();

	virtual QStringList drivers();
	virtual Watch* getWatch(const QString& driver, const QString& connId, QObject *parent = 0);
};

}

#endif // METAWATCHPLUGIN_H