barrier/net/ISocket.h

23 lines
387 B
C
Raw Normal View History

2001-10-06 14:13:28 +00:00
#ifndef ISOCKET_H
#define ISOCKET_H
#include "IInterface.h"
class CNetworkAddress;
class ISocket : public IInterface {
2002-04-29 14:40:01 +00:00
public:
2001-10-06 14:13:28 +00:00
// manipulators
// bind the socket to a particular address
virtual void bind(const CNetworkAddress&) = 0;
2001-10-06 14:13:28 +00:00
// close the socket. this will flush the output stream if it
// hasn't been closed yet.
virtual void close() = 0;
2001-10-06 14:13:28 +00:00
// accessors
};
#endif