You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IConnectionClient.h 327B

1234567891011121314
  1. #pragma once
  2. #include "IConnection.h"
  3. namespace Socket {
  4. class Socket_API IConnectionClient : public IConnection
  5. {
  6. public:
  7. virtual bool connect(const char* serverName, const size_t serverPort, const size_t timeOut = 0xffffffff) = 0;
  8. };
  9. extern Socket_API IConnectionClient* createConnectionClient();
  10. } // namespace Socket