otsdaq  v1_01_04
 All Classes Namespaces Functions
TransceiverSocket.cc
1 #include "otsdaq-core/NetworkUtilities/TransceiverSocket.h"
2 #include "otsdaq-core/MessageFacility/MessageFacility.h"
3 #include "otsdaq-core/Macros/CoutHeaderMacros.h"
4 
5 #include <iostream>
6 
7 using namespace ots;
8 
9 //========================================================================================================================
10 TransceiverSocket::TransceiverSocket(void)
11 {
12  //std::cout << __COUT_HDR_FL__ << __PRETTY_FUNCTION__ << std::endl;
13 }
14 
15 //========================================================================================================================
16 TransceiverSocket::TransceiverSocket(std::string IPAddress, unsigned int port) :
17  Socket (IPAddress, port)
18 {
19  //std::cout << __COUT_HDR_FL__ << __PRETTY_FUNCTION__ << std::endl;
20 }
21 
22 //========================================================================================================================
23 TransceiverSocket::~TransceiverSocket(void)
24 {}