1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef __AE_SOCKET_FACTORY_H
- #define __AE_SOCKET_FACTORY_H
- #include <ICommunicationSocket.h>
- class ISocketFactory
- {
- public:
- virtual ~ISocketFactory() {}
-
- virtual ICommunicationSocket* NewCommunicationSocket() = 0;
- };
- #endif
|