summaryrefslogtreecommitdiff
path: root/testwatchlet.h
blob: 75568ca62651fc911f1794e4739e0b3b92e06d40 (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
27
28
29
30
31
32
33
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