tdaq-develop-2025-02-12
TCPSendClient.cc
1 #include "otsdaq/NetworkUtilities/TCPSendClient.h"
2 
3 using namespace ots;
4 
5 //==============================================================================
6 TCPSendClient::TCPSendClient(const std::string& serverIP, int serverPort)
7  : TCPClientBase(serverIP, serverPort)
8 {
9 }
10 
11 //==============================================================================
12 TCPSendClient::~TCPSendClient(void) {}