blob: 57b10292b0f69ac2d22f9c1d79b345106a7d8624 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef METAWATCHPLUGIN_H
#define METAWATCHPLUGIN_H
#include <sowatch.h>
namespace sowatch
{
class MetaWatchPlugin : public QObject, public WatchPluginInterface {
Q_OBJECT
Q_INTERFACES(sowatch::WatchPluginInterface)
public:
MetaWatchPlugin();
~MetaWatchPlugin();
virtual QStringList drivers();
virtual Watch* getWatch(const QString& driver, QSettings& settings, QObject *parent = 0);
protected:
static bool fontsLoaded;
};
}
#endif // METAWATCHPLUGIN_H
|