From: Christian P. <cp...@us...> - 2004-12-31 03:20:49
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses/System In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22099/include/pclasses/System Modified Files: Pipe.h Log Message: Pipe::Pipe(unsigned long, bool) is now public. Index: Pipe.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/System/Pipe.h,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Pipe.h 30 Dec 2004 19:36:48 -0000 1.5 +++ Pipe.h 31 Dec 2004 03:20:41 -0000 1.6 @@ -35,6 +35,8 @@ Pipe(const Pipe& f) throw(IO::IOError); + Pipe(unsigned long handle, bool readEnd) throw(); + ~Pipe() throw(); static Pair create() throw(IO::IOError); @@ -51,7 +53,6 @@ private: unsigned long _handle; - Pipe(unsigned long h, bool readEnd) throw(); }; } // !namespace System |