From: hristov Date: Fri, 26 Oct 2007 16:13:40 +0000 (+0000) Subject: Moving non-implemented copy constructor and assignment operator to the private sectio... X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=beb87b2c9f1ca93da1f2b8df6d9df273b8d20038;p=u%2Fmrichter%2FAliRoot.git Moving non-implemented copy constructor and assignment operator to the private section of the class --- diff --git a/T0/AliT0Parameters.h b/T0/AliT0Parameters.h index 08440f9ed50..6c6adece0bf 100644 --- a/T0/AliT0Parameters.h +++ b/T0/AliT0Parameters.h @@ -29,8 +29,6 @@ public: AliT0Parameters(); virtual ~AliT0Parameters() {}; - AliT0Parameters(const AliT0Parameters&); - AliT0Parameters& operator=(const AliT0Parameters&); void Init(); void InitIfOnline(); @@ -115,6 +113,10 @@ public: AliCDBEntry* fCalibentry ; // pointer to T0 calibration object AliCDBEntry* fLookUpentry ; // pointer to T0 lokkup table AliCDBEntry* fSlewCorr ; // pointer to slewing correction + + private: + AliT0Parameters(const AliT0Parameters&); + AliT0Parameters& operator=(const AliT0Parameters&); ClassDef(AliT0Parameters,4)