]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliDCSValue.h
Fix for #80619: Missing protections in AliDCSValue::Getxxx
[u/mrichter/AliRoot.git] / STEER / AliDCSValue.h
index 334611ef0bfdcd89728cef2e9027c0a7d466a087..30eda9d9e1972f98b5e6028e26427271a80bde3b 100644 (file)
@@ -44,6 +44,12 @@ public:
   UInt_t GetUInt() const { return fUInt; }
   Float_t GetFloat() const { return fFloat; }
 
+  operator Bool_t() const { return GetBool(); }
+  operator Char_t() const { return GetChar(); }
+  operator Int_t() const { return GetInt(); }
+  operator UInt_t() const { return GetUInt(); }
+  operator Float_t() const { return GetFloat(); }
+
   Type GetType() const { return fType; }
 
   UInt_t GetTimeStamp() const { return fTimeStamp; }