Jun 16th update

This commit is contained in:
noam
2023-01-17 11:34:09 +02:00
parent 90bcc544a2
commit ad04b8d063
168 changed files with 64034 additions and 932 deletions

View File

@@ -15,10 +15,6 @@
#include <map>
#include "sasal.h"
SASAL_START // Orchestration - Modules
using namespace std;
using namespace cereal;
@@ -48,5 +44,3 @@ Data::serialize(JSONInputArchive &in_archive)
make_nvp("version", version)
);
}
SASAL_END

View File

@@ -13,10 +13,6 @@
#include "orchestration_policy.h"
#include "sasal.h"
SASAL_START // Orchestration - Modules
using namespace std;
using namespace cereal;
@@ -60,5 +56,3 @@ OrchestrationPolicy::operator!=(const OrchestrationPolicy &other) const
{
return !((*this) == other);
}
SASAL_END

View File

@@ -19,7 +19,6 @@
#include "debug.h"
#include "config.h"
#include "sasal.h"
using namespace cereal;
using namespace std;
@@ -27,8 +26,6 @@ using namespace chrono;
USE_DEBUG_FLAG(D_ORCHESTRATOR);
SASAL_START // Orchestration - Modules
class RegistrationDetails
{
public:
@@ -681,5 +678,3 @@ OrchestrationStatus::init() { pimpl->init(); }
OrchestrationStatus::OrchestrationStatus() : Component("OrchestrationStatus"), pimpl(make_unique<Impl>()) {}
OrchestrationStatus::~OrchestrationStatus() {}
SASAL_END

View File

@@ -15,10 +15,6 @@
#include <map>
#include "sasal.h"
SASAL_START // Orchestration - Modules
using namespace std;
using namespace cereal;
@@ -129,5 +125,3 @@ Package::serialize(JSONInputArchive & in_archive)
}
package_type = package_type_value->second;
}
SASAL_END

View File

@@ -18,12 +18,9 @@
#include "singleton.h"
#include "common.h"
#include "maybe_res.h"
#include "sasal.h"
using namespace std;
SASAL_START // Orchestration - Modules
USE_DEBUG_FLAG(D_ORCHESTRATOR);
ostream &
@@ -145,5 +142,3 @@ URLParser::toString() const
s_build << protocol << base_url << query << ":" << port;
return s_build.str();
}
SASAL_END