gcontini
2020-12-05 907a46213e5ca3e741744f67ad71966b70b89e38
src/library/base/EventRegistry.cpp
@@ -10,6 +10,7 @@
#include <algorithm>
#include <map>
#include <iostream>
#include <sstream>
#include "EventRegistry.h"
#define LIC_ID_NOT_DEFINED "UNDEF"
@@ -41,6 +42,12 @@
   return out;
}
string EventRegistry::to_string() const {
   std::stringstream ss;
   ss << this;
   return ss.str();
}
void EventRegistry::append(const EventRegistry &eventRegistry) {
   logs.insert(logs.end(), eventRegistry.logs.begin(), eventRegistry.logs.end());
}