Skip to content
Snippets Groups Projects
Commit fbb09939 authored by Daniele Kruse's avatar Daniele Kruse
Browse files

this will break the build: WIP

parent d7bab3fe
No related branches found
No related tags found
No related merge requests found
Showing
with 72 additions and 0 deletions
......@@ -20,6 +20,11 @@
#include "common/dataStructures/utils.hpp"
#include "common/exception/Exception.hpp"
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
cta::common::dataStructures::AdminHost::AdminHost() {}
//------------------------------------------------------------------------------
// operator==
//------------------------------------------------------------------------------
......
......@@ -31,6 +31,7 @@ namespace dataStructures {
struct AdminHost {
AdminHost();
bool operator==(const AdminHost &rhs) const;
......
......@@ -20,6 +20,11 @@
#include "common/dataStructures/utils.hpp"
#include "common/exception/Exception.hpp"
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
cta::common::dataStructures::AdminUser::AdminUser() {}
//------------------------------------------------------------------------------
// operator==
//------------------------------------------------------------------------------
......
......@@ -32,6 +32,7 @@ namespace dataStructures {
struct AdminUser {
AdminUser();
bool operator==(const AdminUser &rhs) const;
......
......@@ -20,6 +20,13 @@
#include "common/dataStructures/utils.hpp"
#include "common/exception/Exception.hpp"
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
cta::common::dataStructures::ArchiveFile::ArchiveFile():
archiveFileID(0),
fileSize(0) {}
//------------------------------------------------------------------------------
// operator==
//------------------------------------------------------------------------------
......
......@@ -32,6 +32,7 @@ namespace dataStructures {
struct ArchiveFile {
ArchiveFile();
bool operator==(const ArchiveFile &rhs) const;
......
......@@ -20,6 +20,13 @@
#include "common/dataStructures/utils.hpp"
#include "common/exception/Exception.hpp"
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
cta::common::dataStructures::ArchiveFileSummary::ArchiveFileSummary():
totalBytes(0),
totalFiles(0) {}
//------------------------------------------------------------------------------
// operator==
//------------------------------------------------------------------------------
......
......@@ -30,6 +30,7 @@ namespace dataStructures {
struct ArchiveFileSummary {
ArchiveFileSummary();
bool operator==(const ArchiveFileSummary &rhs) const;
......
......@@ -20,6 +20,13 @@
#include "common/dataStructures/utils.hpp"
#include "common/exception/Exception.hpp"
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
cta::common::dataStructures::ArchiveJob::ArchiveJob():
archiveFileID(0),
copyNumber(0) {}
//------------------------------------------------------------------------------
// operator==
//------------------------------------------------------------------------------
......
......@@ -31,6 +31,7 @@ namespace dataStructures {
struct ArchiveJob {
ArchiveJob();
bool operator==(const ArchiveJob &rhs) const;
......
......@@ -20,6 +20,13 @@
#include "common/dataStructures/utils.hpp"
#include "common/exception/Exception.hpp"
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
cta::common::dataStructures::ArchiveRequest::ArchiveRequest():
diskpoolThroughput(0),
fileSize(0) {}
//------------------------------------------------------------------------------
// operator==
//------------------------------------------------------------------------------
......
......@@ -33,6 +33,7 @@ namespace dataStructures {
struct ArchiveRequest {
ArchiveRequest();
bool operator==(const ArchiveRequest &rhs) const;
......
......@@ -20,6 +20,12 @@
#include "common/dataStructures/utils.hpp"
#include "common/exception/Exception.hpp"
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
cta::common::dataStructures::ArchiveRoute::ArchiveRoute():
copyNb(0) {}
//------------------------------------------------------------------------------
// operator==
//------------------------------------------------------------------------------
......
......@@ -31,6 +31,7 @@ namespace dataStructures {
struct ArchiveRoute {
ArchiveRoute();
bool operator==(const ArchiveRoute &rhs) const;
......
......@@ -20,6 +20,12 @@
#include "common/dataStructures/utils.hpp"
#include "common/exception/Exception.hpp"
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
cta::common::dataStructures::CancelRetrieveRequest::CancelRetrieveRequest():
archiveFileID(0) {}
//------------------------------------------------------------------------------
// operator==
//------------------------------------------------------------------------------
......
......@@ -32,6 +32,7 @@ namespace dataStructures {
struct CancelRetrieveRequest {
CancelRetrieveRequest();
bool operator==(const CancelRetrieveRequest &rhs) const;
......
......@@ -20,6 +20,11 @@
#include "common/dataStructures/utils.hpp"
#include "common/exception/Exception.hpp"
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
cta::common::dataStructures::DRData::DRData() {}
//------------------------------------------------------------------------------
// operator==
//------------------------------------------------------------------------------
......
......@@ -30,6 +30,7 @@ namespace dataStructures {
struct DRData {
DRData();
bool operator==(const DRData &rhs) const;
......
......@@ -20,6 +20,13 @@
#include "common/dataStructures/utils.hpp"
#include "common/exception/Exception.hpp"
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
cta::common::dataStructures::Dedication::Dedication():
fromTimestamp(0),
untilTimestamp(0) {}
//------------------------------------------------------------------------------
// operator==
//------------------------------------------------------------------------------
......
......@@ -32,6 +32,7 @@ namespace dataStructures {
struct Dedication {
Dedication();
bool operator==(const Dedication &rhs) const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment