aboutsummaryrefslogtreecommitdiffstats
path: root/lib/iowatch.h
diff options
context:
space:
mode:
authorFritz Elfert <felfert@to.com>1999-06-28 08:56:01 +0000
committerFritz Elfert <felfert@to.com>1999-06-28 08:56:01 +0000
commit34b70b0b46e34a73308a4034cc9b1c70209b9eb4 (patch)
tree7abe8be40fde08828d3606e13c41435b2fc9a26c /lib/iowatch.h
parent3d3be141551bb4622da1cb610e4f6f798dd1715e (diff)
downloadplptools-34b70b0b46e34a73308a4034cc9b1c70209b9eb4.tar.gz
plptools-34b70b0b46e34a73308a4034cc9b1c70209b9eb4.tar.bz2
plptools-34b70b0b46e34a73308a4034cc9b1c70209b9eb4.zip
First import.
Diffstat (limited to 'lib/iowatch.h')
-rw-r--r--lib/iowatch.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/iowatch.h b/lib/iowatch.h
new file mode 100644
index 0000000..18c0d44
--- /dev/null
+++ b/lib/iowatch.h
@@ -0,0 +1,21 @@
+#ifndef _iowatch_h
+#define _iowatch_h
+
+#include "bool.h"
+
+class IOWatch {
+public:
+ IOWatch();
+ ~IOWatch();
+
+ void addIO(int a);
+ void remIO(int a);
+ bool watch(long secs, long usecs);
+private:
+
+ enum consts { MAX_IO = 20 };
+ int *io;
+ int num;
+};
+
+#endif