otsdaq  v2_05_02_indev
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 }
17 
18 #endif