barrier/synergy/CTCPSocketFactory.h

21 lines
383 B
C
Raw Normal View History

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
virtual ISocket* create() const throw(XSocket);
virtual IListenSocket* createListen() const throw(XSocket);
};
#endif