barrier/synergy/ISocketFactory.h

21 lines
323 B
C
Raw Normal View History

2001-10-06 18:13:28 +04:00
#ifndef ISOCKETFACTORY_H
#define ISOCKETFACTORY_H
#include "IInterface.h"
class IDataSocket;
2001-10-06 18:13:28 +04:00
class IListenSocket;
class ISocketFactory : public IInterface {
2002-04-29 18:40:01 +04:00
public:
2001-10-06 18:13:28 +04:00
// manipulators
// accessors
// create sockets
virtual IDataSocket* create() const = 0;
virtual IListenSocket* createListen() const = 0;
2001-10-06 18:13:28 +04:00
};
#endif