#ifndef ROOT_TFunction
#define ROOT_TFunction
#ifndef ROOT_TDictionary
#include "TDictionary.h"
#endif
class TFunction : public TDictionary {
friend class TCint;
protected:
MethodInfo_t *fInfo;
TString fMangledName;
TString fSignature;
TList *fMethodArgs;
virtual void CreateSignature();
public:
TFunction(MethodInfo_t *info = 0);
TFunction(const TFunction &orig);
TFunction& operator=(const TFunction &rhs);
virtual ~TFunction();
virtual TObject *Clone(const char *newname="") const;
virtual const char *GetMangledName() const;
virtual const char *GetPrototype() const;
const char *GetSignature();
const char *GetReturnTypeName() const;
TList *GetListOfMethodArgs();
Int_t GetNargs() const;
Int_t GetNargsOpt() const;
void *InterfaceMethod() const;
Long_t Property() const;
ClassDef(TFunction,0)
};
#endif
Last change: Wed Jun 25 08:39:21 2008
Last generated: 2008-06-25 08:39
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.