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