barrier/synergy/ISocketFactory.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

22 lines
338 B
C++

#ifndef ISOCKETFACTORY_H
#define ISOCKETFACTORY_H
#include "IInterface.h"
#include "XSocket.h"
class ISocket;
class IListenSocket;
class ISocketFactory : public IInterface {
public:
// manipulators
// accessors
// create sockets
virtual ISocket* create() const = 0;
virtual IListenSocket* createListen() const = 0;
};
#endif