#ifndef __OUTPIPE_H__ #define __OUTPIPE_H__ #include 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