diff options
author | pixel <pixel> | 2004-11-27 21:46:02 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-11-27 21:46:02 +0000 |
commit | ae2779e504ca5ae11a87e047b4536a5f428cce4d (patch) | |
tree | 19604ce1873e9cc98be9b840b894cb7eae341532 /include/InPipe.h | |
parent | 583964f9f8e954eb57b31663065c5b9e833d045e (diff) |
Large dos2unix commit...
Diffstat (limited to 'include/InPipe.h')
-rw-r--r-- | include/InPipe.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/include/InPipe.h b/include/InPipe.h index b08b35c..2828da3 100644 --- a/include/InPipe.h +++ b/include/InPipe.h @@ -1,19 +1,19 @@ -#ifndef __INPIPE_H__
-#define __INPIPE_H__
-
-#include <Handle.h>
-
-class InPipe : public Handle {
- public:
- InPipe();
- InPipe(const InPipe &);
- virtual ~InPipe();
- void Hook();
- virtual bool CanWrite();
- virtual bool CanRead();
- virtual String GetName();
- private:
- int p[2], hooked;
-};
-
-#endif
+#ifndef __INPIPE_H__ +#define __INPIPE_H__ + +#include <Handle.h> + +class InPipe : public Handle { + public: + InPipe(); + InPipe(const InPipe &); + virtual ~InPipe(); + void Hook(); + virtual bool CanWrite(); + virtual bool CanRead(); + virtual String GetName(); + private: + int p[2], hooked; +}; + +#endif |