rxr: renamed files, removed unnecessary comments

This commit is contained in:
2019-11-18 16:19:46 +01:00
parent 5ce79ec9fa
commit c4e7086d99
8 changed files with 607 additions and 1587 deletions

View File

@ -1,5 +1,4 @@
#include "Receiver.h"
#include "slsReceiverTCPIPInterface.h"
#include "sls_detector_exceptions.h"
#include "versionAPI.h"
#include "container_utils.h"
@ -71,14 +70,14 @@ Receiver::Receiver(int argc, char *argv[]):
}
// might throw an exception
tcpipInterface = sls::make_unique<slsReceiverTCPIPInterface>(tcpip_port_no);
tcpipInterface = sls::make_unique<ClientInterface>(tcpip_port_no);
}
Receiver::Receiver(int tcpip_port_no)
{
// might throw an exception
tcpipInterface = sls::make_unique<slsReceiverTCPIPInterface>(tcpip_port_no);
tcpipInterface = sls::make_unique<ClientInterface>(tcpip_port_no);
}
int64_t Receiver::getReceiverVersion(){