From: Christian P. <cp...@us...> - 2005-01-30 17:10:17
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses/System In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31386/include/pclasses/System Modified Files: Pipe.h Log Message: Added method to retrieve native OS handle. Index: Pipe.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/System/Pipe.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- Pipe.h 3 Jan 2005 13:50:44 -0000 1.8 +++ Pipe.h 30 Jan 2005 17:10:07 -0000 1.9 @@ -34,9 +34,7 @@ typedef std::pair<Pipe,Pipe> Pair; Pipe(const Pipe& f) throw(IO::IOError); - Pipe(unsigned long handle, bool readEnd) throw(); - ~Pipe() throw(); static Pair create() throw(IO::IOError); @@ -52,6 +50,8 @@ void _sync() const throw(IO::IOError); + unsigned long handle() const throw(); + private: unsigned long _handle; }; |