able to send data to eigerbe

tweaks on logging

added configuration_map, to flexibly pass options to the different receivers

some more fixes to method overloads

still very preliminary
This commit is contained in:
2014-09-17 15:56:27 +02:00
parent cfacc6ad6e
commit b427452f39
12 changed files with 352 additions and 117 deletions

View File

@ -13,6 +13,7 @@
* @short base class with all the functions for a receiver, set/get parameters, start/stop etc.
*/
#include <exception>
#include "sls_receiver_defs.h"
#include "receiver_defs.h"
@ -20,7 +21,6 @@
#include "utilities.h"
#include "logger.h"
/*
void print_not_implemented(string method_name){
std::cout << "[WARNING] Method " << method_name << " not implemented!" << std::endl;
@ -78,9 +78,10 @@ class UDPInterface {
* Factory create method
*/
static UDPInterface *create(string receiver_type = "standard");
public:
virtual void configure(map<string, string> config_map) = 0;
public: