1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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