ROOT
git-r3/HEAD
Reference Guide
Loading...
Searching...
No Matches
TClassGenerator.cxx
Go to the documentation of this file.
1
// @(#)root/base:$Id$
2
// Author: Philippe Canal 24/06/2003
3
4
/*************************************************************************
5
* Copyright (C) 1995-2003, 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
/** \class TClassGenerator
13
Objects following this interface can be passed onto the TROOT object
14
to implement a user customized way to create the TClass objects.
15
16
Use TROOT::AddClassGenerator to register a concrete instance.
17
*/
18
19
20
#include "
TClassGenerator.h
"
21
22
23
//////////////////////////////////////////////////////////////////////////
24
TClass
*
TClassGenerator::GetClass
(
const
char
* classname,
Bool_t
load,
Bool_t
/* silent */
)
25
{
26
// Default implementation for backward compatibility ignoring the value of 'silent'
27
return
GetClass
(classname,load);
28
}
29
30
//////////////////////////////////////////////////////////////////////////
31
TClass
*
TClassGenerator::GetClass
(
const
std::type_info& typeinfo,
Bool_t
load,
Bool_t
/* silent */
)
32
{
33
// Default implementation for backward compatibility ignoring the value of 'silent'
34
return
GetClass
(typeinfo,load);
35
}
Bool_t
bool Bool_t
Boolean (0=false, 1=true) (bool).
Definition
RtypesCore.h:77
TClassGenerator.h
TClassGenerator::GetClass
virtual TClass * GetClass(const char *classname, Bool_t load)=0
TClass
TClass instances represent classes, structs and namespaces in the ROOT type system.
Definition
TClass.h:84
core
meta
src
TClassGenerator.cxx
ROOTgit-r3/HEAD - Reference Guide Generated on
(GVA Time) using Doxygen 1.16.1