diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2011-09-16 17:47:24 +0200 |
---|---|---|
committer | Javier <javier@pcjavier.(none)> | 2011-09-16 17:47:24 +0200 |
commit | aa1c0fd3146b4ed055d181c99d52463afa6bedbb (patch) | |
tree | f6fb8d9693ad8c545ddabf76312f8f33b5b9878f /testwatchlet.h | |
download | sowatch-aa1c0fd3146b4ed055d181c99d52463afa6bedbb.tar.gz sowatch-aa1c0fd3146b4ed055d181c99d52463afa6bedbb.zip |
Initial import
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 |