diff options
Diffstat (limited to 'testwatchlet.h')
-rw-r--r-- | testwatchlet.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/testwatchlet.h b/testwatchlet.h new file mode 100644 index 0000000..75568ca --- /dev/null +++ b/testwatchlet.h @@ -0,0 +1,34 @@ +#ifndef TESTWATCHLET_H +#define TESTWATCHLET_H + +#include <QtCore/QTimer> +#include "watchlet.h" + +namespace sowatch +{ + +class TestWatchlet : public Watchlet +{ + Q_OBJECT +public: + explicit TestWatchlet(WatchServer* server); + + void activate(); + void deactivate(); + +signals: + +public slots: + +protected slots: + void interv(); + +private: + QTimer *_timer; + int _y; + +}; + +} + +#endif // TESTWATCHLET_H |