Logo ROOT  
Reference Guide
TPyClassGenerator.h
Go to the documentation of this file.
1// Author: Enric Tejedor CERN 08/2019
2// Original PyROOT code by Wim Lavrijsen, LBL
3//
4// /*************************************************************************
5// * Copyright (C) 1995-2019, 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_TPyClassGenerator
13#define ROOT_TPyClassGenerator
14
15// ROOT
16#include "TClassGenerator.h"
17
19public:
20 virtual TClass *GetClass(const char *name, Bool_t load);
21 virtual TClass *GetClass(const std::type_info &typeinfo, Bool_t load);
22 virtual TClass *GetClass(const char *name, Bool_t load, Bool_t silent);
23 virtual TClass *GetClass(const std::type_info &typeinfo, Bool_t load, Bool_t silent);
24};
25
26#endif // !ROOT_TPyClassGenerator
char name[80]
Definition: TGX11.cxx:109
Objects following this interface can be passed onto the TROOT object to implement a user customized w...
TClass instances represent classes, structs and namespaces in the ROOT type system.
Definition: TClass.h:80
virtual TClass * GetClass(const char *name, Bool_t load)