2001-10-06 14:13:28 +00:00
|
|
|
#ifndef CTCPSOCKETFACTORY_H
|
|
|
|
#define CTCPSOCKETFACTORY_H
|
|
|
|
|
|
|
|
#include "ISocketFactory.h"
|
|
|
|
|
|
|
|
class CTCPSocketFactory : public ISocketFactory {
|
|
|
|
public:
|
|
|
|
CTCPSocketFactory();
|
|
|
|
virtual ~CTCPSocketFactory();
|
|
|
|
|
|
|
|
// manipulators
|
|
|
|
|
|
|
|
// accessors
|
|
|
|
|
|
|
|
// ISocketFactory overrides
|
2001-10-14 16:58:01 +00:00
|
|
|
virtual ISocket* create() const;
|
|
|
|
virtual IListenSocket* createListen() const;
|
2001-10-06 14:13:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|