Changeset 3897 in Sophya for trunk/AddOn/TAcq/swrapsock.h
- Timestamp:
- Oct 4, 2010, 4:19:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/AddOn/TAcq/swrapsock.h
r3763 r3897 37 37 Socket(int s=-1); 38 38 Socket(Socket const & a); 39 ~Socket();39 virtual ~Socket(); 40 40 41 41 size_t Send(const char * buff, size_t len, int flag=0); … … 44 44 size_t ReceiveAll(char * buff, size_t len); 45 45 46 int Close();46 virtual int Close(); 47 47 48 48 inline Socket& operator=(Socket const & a) … … 82 82 ServerSocket(int port, int nconmax); 83 83 Socket WaitClientConnection(); 84 virtual int Close(); // redefinition de la methode de Socket::Close() 84 85 85 86 protected:
Note:
See TracChangeset
for help on using the changeset viewer.