barrier/synergy/CTCPSocketFactory.h
crs 6aba3a6f57 removed exception specifications. thread exceptions weren't
being listed and they'd have to be added to every one.  just
doesn't seem worth the trouble.
2001-10-14 16:58:01 +00:00

21 lines
353 B
C++

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