Skip to content

Commit 84f023b

Browse files
TrifleMichaelshahor02
authored andcommitted
Removed copy and copy assignment constructors
1 parent 2229a41 commit 84f023b

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

CCDB/include/CCDB/CcdbApi.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ class CcdbApi //: public DatabaseInterface
6464
/// \brief Default destructor
6565
virtual ~CcdbApi();
6666

67+
// Delete copy and copy assignment constructor
68+
CcdbApi(const CcdbApi&) = delete;
69+
void operator=(const CcdbApi&) = delete;
70+
6771
const std::string getUniqueAgentID() const { return mUniqueAgentID; }
6872

6973
static bool checkAlienToken();

0 commit comments

Comments
 (0)