Logo ROOT  
Reference Guide
TMethodArg.h
Go to the documentation of this file.
1// @(#)root/meta:$Id$
2// Author: Rene Brun 04/02/95
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, 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#ifndef ROOT_TMethodArg
13#define ROOT_TMethodArg
14
15
16//////////////////////////////////////////////////////////////////////////
17// //
18// TMethodArg //
19// //
20// Dictionary interface for a method argument. //
21// //
22//////////////////////////////////////////////////////////////////////////
23
24#include "TDictionary.h"
25
26#include "TDataMember.h"
27
28class TFunction;
29class TMethod;
30
31class TMethodArg : public TDictionary {
32
33friend class TMethod;
34
35private:
36 TMethodArg(const TMethodArg&); // Not implemented
37 TMethodArg& operator=(const TMethodArg&); // Not implemented
38
39 MethodArgInfo_t *fInfo; //pointer to CINT method argument info
40 TFunction *fMethod; //pointer to the method or global function
41 TDataMember *fDataMember; //TDataMember pointed by this arg,to get values and options from.
42
43public:
44 TMethodArg(MethodArgInfo_t *info = 0, TFunction *method = 0);
45 virtual ~TMethodArg();
46 const char *GetDefault() const;
47 TFunction *GetMethod() const { return fMethod; }
48 const char *GetTypeName() const;
49 const char *GetFullTypeName() const;
50 std::string GetTypeNormalizedName() const;
51 Long_t Property() const;
52
54 TList *GetOptions() const;
55
56 void Update(MethodArgInfo_t *info);
57
58 ClassDef(TMethodArg,0) //Dictionary for a method argument
59};
60
61#endif
62
long Long_t
Definition: RtypesCore.h:52
#define ClassDef(name, id)
Definition: Rtypes.h:322
All ROOT classes may have RTTI (run time type identification) support added.
Definition: TDataMember.h:31
This class defines an abstract interface that must be implemented by all classes that contain diction...
Definition: TDictionary.h:166
Global functions class (global functions are obtained from CINT).
Definition: TFunction.h:28
A doubly linked list.
Definition: TList.h:44
Each ROOT method (see TMethod) has a linked list of its arguments.
Definition: TMethodArg.h:31
const char * GetFullTypeName() const
Get full type description of method argument, e.g.: "class TDirectory*".
Definition: TMethodArg.cxx:75
MethodArgInfo_t * fInfo
Definition: TMethodArg.h:39
TList * GetOptions() const
Returns list of possible options - according to pointed datamember.
Definition: TMethodArg.cxx:103
const char * GetDefault() const
Get default value of method argument.
Definition: TMethodArg.cxx:58
virtual ~TMethodArg()
TMethodArg dtor deletes adopted CINT MethodArgInfo object.
Definition: TMethodArg.cxx:50
TMethodArg & operator=(const TMethodArg &)
void Update(MethodArgInfo_t *info)
Update fInfo (to 0 for unloading and non-zero for reloading).
Definition: TMethodArg.cxx:130
Long_t Property() const
Get property description word. For meaning of bits see EProperty.
Definition: TMethodArg.cxx:94
std::string GetTypeNormalizedName() const
Get the normalized name of the return type.
Definition: TMethodArg.cxx:86
TFunction * fMethod
Definition: TMethodArg.h:40
TFunction * GetMethod() const
Definition: TMethodArg.h:47
const char * GetTypeName() const
Get type of method argument, e.g.
Definition: TMethodArg.cxx:67
TDataMember * fDataMember
Definition: TMethodArg.h:41
TDataMember * GetDataMember() const
Returns TDataMember pointed by this methodarg.
Definition: TMethodArg.cxx:121
TMethodArg(const TMethodArg &)
Each ROOT class (see TClass) has a linked list of methods.
Definition: TMethod.h:38