We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2229a41 commit 84f023bCopy full SHA for 84f023b
1 file changed
CCDB/include/CCDB/CcdbApi.h
@@ -64,6 +64,10 @@ class CcdbApi //: public DatabaseInterface
64
/// \brief Default destructor
65
virtual ~CcdbApi();
66
67
+ // Delete copy and copy assignment constructor
68
+ CcdbApi(const CcdbApi&) = delete;
69
+ void operator=(const CcdbApi&) = delete;
70
+
71
const std::string getUniqueAgentID() const { return mUniqueAgentID; }
72
73
static bool checkAlienToken();
0 commit comments