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