summaryrefslogtreecommitdiffstats
path: root/kdecore/tests/kprociotest.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdecore/tests/kprociotest.h')
-rw-r--r--kdecore/tests/kprociotest.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/kdecore/tests/kprociotest.h b/kdecore/tests/kprociotest.h
deleted file mode 100644
index 9f948e644..000000000
--- a/kdecore/tests/kprociotest.h
+++ /dev/null
@@ -1,42 +0,0 @@
-//
-// 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 <stdio.h>
-#include <tqobject.h>
-#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
-
-