diff options
Diffstat (limited to 'include/OutPipe.h')
-rw-r--r-- | include/OutPipe.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/include/OutPipe.h b/include/OutPipe.h index 467a89b..9d016da 100644 --- a/include/OutPipe.h +++ b/include/OutPipe.h @@ -1,19 +1,19 @@ -#ifndef __OUTPIPE_H__ -#define __OUTPIPE_H__ - -#include <Handle.h> - -class OutPipe : public Handle { - public: - OutPipe(); - OutPipe(const OutPipe &); - virtual ~OutPipe(); - void Hook(); - virtual bool CanWrite(); - virtual bool CanRead(); - virtual String GetName(); - private: - int p[2], hooked; -}; - -#endif +#ifndef __OUTPIPE_H__
+#define __OUTPIPE_H__
+
+#include <Handle.h>
+
+class OutPipe : public Handle {
+ public:
+ OutPipe();
+ OutPipe(const OutPipe &);
+ virtual ~OutPipe();
+ void Hook();
+ virtual bool CanWrite();
+ virtual bool CanRead();
+ virtual String GetName();
+ private:
+ int p[2], hooked;
+};
+
+#endif
|