1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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