Update of /cvsroot/pclasses/pclasses2/include/pclasses/Net
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14473/include/pclasses/Net
Modified Files:
Socket.h
Log Message:
- Added virtual IODevice::setBlocking(), IODevice::isBlocking(), IODevice::wait()
Index: Socket.h
===================================================================
RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/Net/Socket.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- Socket.h 6 Jun 2005 12:09:30 -0000 1.9
+++ Socket.h 3 Jul 2005 23:42:33 -0000 1.10
@@ -92,6 +92,8 @@
void setBlocking(bool enable) throw(IO::IOError);
+ bool isBlocking() const throw();
+
int wait(int wait, unsigned int timeout) throw(IO::IOError);
static int wait(Socket* s[], int wait[], int num, unsigned int timeout)
|