diff options
Diffstat (limited to 'watchsimulator.h')
-rw-r--r-- | watchsimulator.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/watchsimulator.h b/watchsimulator.h new file mode 100644 index 0000000..564118c --- /dev/null +++ b/watchsimulator.h @@ -0,0 +1,20 @@ +#ifndef WATCHSIMULATOR_H +#define WATCHSIMULATOR_H + +#include <QtGui/QImage> + +#include "watch.h" + +namespace sowatch +{ + +class WatchSimulator : public Watch +{ + Q_OBJECT +public: + explicit WatchSimulator(const QImage& image, QObject *parent = 0); +}; + +} + +#endif // WATCHSIMULATOR_H |