otsdaq_utilities  v2_04_02
TCPClient.h
1 #ifndef _ots_TCPClient_h_
2 #define _ots_TCPClient_h_
3 
4 #include <string>
5 #include "otsdaq-core/NetworkUtilities/TCPClientBase.h"
6 #include "otsdaq-core/NetworkUtilities/TCPTransceiverSocket.h"
7 
8 namespace ots
9 {
10 class TCPClient : public TCPTransceiverSocket, public TCPClientBase
11 {
12  public:
13  TCPClient(const std::string& serverIP, int serverPort);
14  virtual ~TCPClient(void);
15 };
16 }
17 #endif