Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/root/TPyClassGenerator.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // Author: Enric Tejedor CERN  08/2019
0002 // Original PyROOT code by Wim Lavrijsen, LBL
0003 //
0004 // /*************************************************************************
0005 //  * Copyright (C) 1995-2019, Rene Brun and Fons Rademakers.               *
0006 //  * All rights reserved.                                                  *
0007 //  *                                                                       *
0008 //  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009 //  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010 //  *************************************************************************/
0011 
0012 #ifndef ROOT_TPyClassGenerator
0013 #define ROOT_TPyClassGenerator
0014 
0015 // ROOT
0016 #include "TClassGenerator.h"
0017 
0018 class TPyClassGenerator : public TClassGenerator {
0019 public:
0020    TClass *GetClass(const char *name, Bool_t load) override;
0021    TClass *GetClass(const std::type_info &typeinfo, Bool_t load) override;
0022    TClass *GetClass(const char *name, Bool_t load, Bool_t silent) override;
0023    TClass *GetClass(const std::type_info &typeinfo, Bool_t load, Bool_t silent) override;
0024 };
0025 
0026 #endif // !ROOT_TPyClassGenerator