From e16866e072f94410321d70daedbcb855ea878cac Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 6 Nov 2011 15:56:40 -0600 Subject: Actually move the kde files that were renamed in the last commit --- tdecore/tests/kprociotest.h | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 tdecore/tests/kprociotest.h (limited to 'tdecore/tests/kprociotest.h') diff --git a/tdecore/tests/kprociotest.h b/tdecore/tests/kprociotest.h new file mode 100644 index 000000000..9f948e644 --- /dev/null +++ b/tdecore/tests/kprociotest.h @@ -0,0 +1,42 @@ +// +// DUMMY -- A dummy class with a slot to demonstrate KProcess signals +// +// version 0.2, Aug 2nd 1997 +// +// (C) Christian Czezatke +// e9025461@student.tuwien.ac.at +// + + +#ifndef __DUMMY_H__ +#define __DUMMY_H__ + +#include +#include +#include "kprocio.h" + +class Dummy : public TQObject +{ + Q_OBJECT + + public slots: + void printMessage(KProcess *proc) + { + printf("Process %d exited!\n", (int)proc->getPid()); + } + + void gotOutput(KProcIO*proc) + { + TQString line; + while(true) { + int result = proc->readln(line); + if (result == -1) return; + printf("OUTPUT>> [%d] '%s'\n", result, line.latin1()); + } + } + +}; + +#endif + + -- cgit v1.2.1