blob: 3565d88ab8a2eb6ea77e9ce43f9d67f1a6284360 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | #ifndef _OPT_KDECVS_SRC_KDELIBS_DCOP_TEST_TESTER_H
#define _OPT_KDECVS_SRC_KDELIBS_DCOP_TEST_TESTER_H
#include "test_stub.h"
#include <tqobject.h>
class Driver : public TQObject, public Test_stub
{
	Q_OBJECT
	public:
		Driver(const char*);
	public slots:
		void test();
	private:
	int count;
};
#endif // _OPT_KDE-CVS_SRC_KDELIBS_DCOP_TEST_TESTER_H
 |