From: Christian P. <cp...@us...> - 2005-01-01 19:00:17
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses/IO In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv395/include/pclasses/IO Modified Files: IODevice.h Log Message: Removed LogicError from open()/close() new semantics: open(): reopen with new file close(): closes file (when open) Index: IODevice.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/IO/IODevice.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- IODevice.h 30 Dec 2004 19:36:47 -0000 1.2 +++ IODevice.h 1 Jan 2005 19:00:08 -0000 1.3 @@ -64,7 +64,7 @@ IODevice() throw(); virtual ~IODevice() throw(); - virtual void close() throw(LogicError, IOError) = 0; + virtual void close() throw(IOError) = 0; virtual size_t read(char* buffer, size_t count) throw(IOError) = 0; |