Logo ROOT   6.08/07
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 #ifndef ROOT_Rtypes
28 #include "Rtypes.h"
29 #endif
30 
31 #include <string>
32 
34 private:
35  TInterpreterValue(const TInterpreterValue &); // not implemented
36  TInterpreterValue& operator=(TInterpreterValue &); // not implemented
37 public:
39  virtual ~TInterpreterValue() { }
40 
41  virtual const void* GetValAddr() const = 0;
42  virtual void* GetValAddr() = 0;
43 
44  virtual Bool_t IsValid() const = 0;
45  virtual Double_t GetAsDouble() const = 0;
46  virtual Long_t GetAsLong() const = 0;
47  virtual ULong_t GetAsUnsignedLong() const = 0;
48  virtual void* GetAsPointer() const = 0;
49  virtual std::string ToString() const = 0;
50 };
51 
52 #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 &)