tdaq-develop-2025-02-12
TCPClient.h
1 #ifndef _ots_TCPClient_h_
2 #define _ots_TCPClient_h_
3 
4 #include <string>
5 #include "otsdaq/NetworkUtilities/TCPClientBase.h"
6 #include "otsdaq/NetworkUtilities/TCPTransceiverSocket.h"
7 
8 namespace ots
9 {
11 {
12  public:
13  TCPClient(const std::string& serverIP, int serverPort);
14  virtual ~TCPClient(void);
15 };
16 } // namespace ots
17 
18 #endif
A class that can read/write to a socket.