C++ IP API  9.5.5
TCP & UDP for virtual user scripts
TcpClientConnection.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "Ip.h"
4 
5 #include "TcpConnection.h"
6 
7 namespace Facilita
8 {
19  {
20 
21  friend class TcpConnectionFactory;
22 
23  public:
30  TcpClientConnection& operator=(const TcpClientConnection& other);
31 
40  void connect();
41 
42  private:
43  TcpClientConnection(TcpConnectionImpl* impl);
44  };
45 }
A factory class for the creation of TcpClientConnection and TcpConnection objects.
Definition: TcpConnectionFactory.h:24
This class enables communication over the TCP protocol and permits connection to a server...
Definition: TcpClientConnection.h:18
#define IP_API
Definition: Ip.h:21
Definition: IpEndPoint.h:9
A TCP protocol connection endpoint that manages an underlying socket. Provides methods for sending an...
Definition: TcpConnection.h:24