Logo ROOT   6.10/09
Reference Guide
TInterpreterValue.h
Go to the documentation of this file.
1 // @(#)root/core/meta:$Id$e
2 // Author: Vassil Vassilev 13/03/2013
3 
4 /*******************************************************************************
5  * Copyright (C) 1995-2013, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  ******************************************************************************/
11 
12 ////////////////////////////////////////////////////////////////////////////////
13 // //
14 // Class representing a value coming from the interpreter. Its main use case //
15 // is to TCallFunc. When TCallFunc returns by-value, i.e. a temporary //
16 // variable, its lifetime has to be extended. TInterpreterValue provides a //
17 // way to extend the temporaries lifetime and gives the user to control it. //
18 // //
19 // The class needs to be derived from for the actual interpreter, //
20 // see TClingValue. //
21 // //
22 ////////////////////////////////////////////////////////////////////////////////
23 
24 #ifndef ROOT_TInterpreterValue
25 #define ROOT_TInterpreterValue
26 
27 #include "Rtypes.h"
28 
29 #include <string>
30 
32 private:
33  TInterpreterValue(const TInterpreterValue &); // not implemented
34  TInterpreterValue& operator=(TInterpreterValue &); // not implemented
35 public:
37  virtual ~TInterpreterValue() { }
38 
39  virtual const void* GetValAddr() const = 0;
40  virtual void* GetValAddr() = 0;
41 
42  virtual Bool_t IsValid() const = 0;
43  virtual Double_t GetAsDouble() const = 0;
44  virtual Long_t GetAsLong() const = 0;
45  virtual ULong_t GetAsUnsignedLong() const = 0;
46  virtual void* GetAsPointer() const = 0;
47  virtual std::string ToString() const = 0;
48 };
49 
50 #endif // ROOT_TInterpreterValue
virtual ULong_t GetAsUnsignedLong() const =0
virtual ~TInterpreterValue()
virtual void * GetAsPointer() const =0
bool Bool_t
Definition: RtypesCore.h:59
virtual Bool_t IsValid() const =0
virtual std::string ToString() const =0
virtual Double_t GetAsDouble() const =0
long Long_t
Definition: RtypesCore.h:50
virtual const void * GetValAddr() const =0
double Double_t
Definition: RtypesCore.h:55
unsigned long ULong_t
Definition: RtypesCore.h:51
virtual Long_t GetAsLong() const =0
TInterpreterValue & operator=(TInterpreterValue &)