mirror of
https://github.com/debauchee/barrier.git
synced 2026-02-09 21:25:55 +08:00
being listed and they'd have to be added to every one. just doesn't seem worth the trouble.
21 lines
353 B
C++
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
|