Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dCache
cta
Commits
2c24b698
Commit
2c24b698
authored
Apr 01, 2016
by
Daniele Kruse
Browse files
this will break the build: WIP
parent
7f67185e
Changes
67
Hide whitespace changes
Inline
Side-by-side
common/dataStructures/AdminHost.cpp
View file @
2c24b698
...
...
@@ -20,6 +20,11 @@
#include
"common/dataStructures/utils.hpp"
#include
"common/exception/Exception.hpp"
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
cta
::
common
::
dataStructures
::
AdminHost
::
AdminHost
()
{}
//------------------------------------------------------------------------------
// operator==
//------------------------------------------------------------------------------
...
...
common/dataStructures/AdminHost.hpp
View file @
2c24b698
...
...
@@ -31,6 +31,7 @@ namespace dataStructures {
struct
AdminHost
{
AdminHost
();
bool
operator
==
(
const
AdminHost
&
rhs
)
const
;
...
...
common/dataStructures/AdminUser.cpp
View file @
2c24b698
...
...
@@ -20,6 +20,11 @@
#include
"common/dataStructures/utils.hpp"
#include
"common/exception/Exception.hpp"
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
cta
::
common
::
dataStructures
::
AdminUser
::
AdminUser
()
{}
//------------------------------------------------------------------------------
// operator==
//------------------------------------------------------------------------------
...
...
common/dataStructures/AdminUser.hpp
View file @
2c24b698
...
...
@@ -32,6 +32,7 @@ namespace dataStructures {
struct
AdminUser
{
AdminUser
();
bool
operator
==
(
const
AdminUser
&
rhs
)
const
;
...
...
common/dataStructures/ArchiveFile.cpp
View file @
2c24b698
...
...
@@ -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==
//------------------------------------------------------------------------------
...
...
common/dataStructures/ArchiveFile.hpp
View file @
2c24b698
...
...
@@ -32,6 +32,7 @@ namespace dataStructures {
struct
ArchiveFile
{
ArchiveFile
();
bool
operator
==
(
const
ArchiveFile
&
rhs
)
const
;
...
...
common/dataStructures/ArchiveFileSummary.cpp
View file @
2c24b698
...
...
@@ -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==
//------------------------------------------------------------------------------
...
...
common/dataStructures/ArchiveFileSummary.hpp
View file @
2c24b698
...
...
@@ -30,6 +30,7 @@ namespace dataStructures {
struct
ArchiveFileSummary
{
ArchiveFileSummary
();
bool
operator
==
(
const
ArchiveFileSummary
&
rhs
)
const
;
...
...
common/dataStructures/ArchiveJob.cpp
View file @
2c24b698
...
...
@@ -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==
//------------------------------------------------------------------------------
...
...
common/dataStructures/ArchiveJob.hpp
View file @
2c24b698
...
...
@@ -31,6 +31,7 @@ namespace dataStructures {
struct
ArchiveJob
{
ArchiveJob
();
bool
operator
==
(
const
ArchiveJob
&
rhs
)
const
;
...
...
common/dataStructures/ArchiveRequest.cpp
View file @
2c24b698
...
...
@@ -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==
//------------------------------------------------------------------------------
...
...
common/dataStructures/ArchiveRequest.hpp
View file @
2c24b698
...
...
@@ -33,6 +33,7 @@ namespace dataStructures {
struct
ArchiveRequest
{
ArchiveRequest
();
bool
operator
==
(
const
ArchiveRequest
&
rhs
)
const
;
...
...
common/dataStructures/ArchiveRoute.cpp
View file @
2c24b698
...
...
@@ -20,6 +20,12 @@
#include
"common/dataStructures/utils.hpp"
#include
"common/exception/Exception.hpp"
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
cta
::
common
::
dataStructures
::
ArchiveRoute
::
ArchiveRoute
()
:
copyNb
(
0
)
{}
//------------------------------------------------------------------------------
// operator==
//------------------------------------------------------------------------------
...
...
common/dataStructures/ArchiveRoute.hpp
View file @
2c24b698
...
...
@@ -31,6 +31,7 @@ namespace dataStructures {
struct
ArchiveRoute
{
ArchiveRoute
();
bool
operator
==
(
const
ArchiveRoute
&
rhs
)
const
;
...
...
common/dataStructures/CancelRetrieveRequest.cpp
View file @
2c24b698
...
...
@@ -20,6 +20,12 @@
#include
"common/dataStructures/utils.hpp"
#include
"common/exception/Exception.hpp"
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
cta
::
common
::
dataStructures
::
CancelRetrieveRequest
::
CancelRetrieveRequest
()
:
archiveFileID
(
0
)
{}
//------------------------------------------------------------------------------
// operator==
//------------------------------------------------------------------------------
...
...
common/dataStructures/CancelRetrieveRequest.hpp
View file @
2c24b698
...
...
@@ -32,6 +32,7 @@ namespace dataStructures {
struct
CancelRetrieveRequest
{
CancelRetrieveRequest
();
bool
operator
==
(
const
CancelRetrieveRequest
&
rhs
)
const
;
...
...
common/dataStructures/DRData.cpp
View file @
2c24b698
...
...
@@ -20,6 +20,11 @@
#include
"common/dataStructures/utils.hpp"
#include
"common/exception/Exception.hpp"
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
cta
::
common
::
dataStructures
::
DRData
::
DRData
()
{}
//------------------------------------------------------------------------------
// operator==
//------------------------------------------------------------------------------
...
...
common/dataStructures/DRData.hpp
View file @
2c24b698
...
...
@@ -30,6 +30,7 @@ namespace dataStructures {
struct
DRData
{
DRData
();
bool
operator
==
(
const
DRData
&
rhs
)
const
;
...
...
common/dataStructures/Dedication.cpp
View file @
2c24b698
...
...
@@ -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==
//------------------------------------------------------------------------------
...
...
common/dataStructures/Dedication.hpp
View file @
2c24b698
...
...
@@ -32,6 +32,7 @@ namespace dataStructures {
struct
Dedication
{
Dedication
();
bool
operator
==
(
const
Dedication
&
rhs
)
const
;
...
...
Prev
1
2
3
4
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment