diff options
Diffstat (limited to 'tdeio/tests/kdcopcheck.h')
-rw-r--r-- | tdeio/tests/kdcopcheck.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tdeio/tests/kdcopcheck.h b/tdeio/tests/kdcopcheck.h new file mode 100644 index 000000000..593dbba1e --- /dev/null +++ b/tdeio/tests/kdcopcheck.h @@ -0,0 +1,28 @@ +#ifndef _BLA_H_ +#define _BLA_H_ + +#include <kprocess.h> +#include <tqstring.h> +#include <tqobject.h> + +class TestService : public TQObject +{ + Q_OBJECT +public: + TestService(const TQString &exec); + + int exec(); + +public slots: + void newApp(const TQCString &appId); + void endApp(const TQCString &appId); + void appExit(); + void stop(); + +protected: + int result; + TQString m_exec; + TDEProcess proc; +}; + +#endif |