#ifndef ROOT_TClassGenerator
#define ROOT_TClassGenerator
#ifndef ROOT_TObject
#include "TObject.h"
#endif
class TClass;
class TClassGenerator : public TObject {
protected:
TClassGenerator() : TObject() { }
virtual ~TClassGenerator() { }
public:
virtual TClass *GetClass(const char* classname, Bool_t load) = 0;
virtual TClass *GetClass(const type_info& typeinfo, Bool_t load) = 0;
ClassDef(TClassGenerator,1);
};
#endif
Last change: Wed Jun 25 08:35:37 2008
Last generated: 2008-06-25 08:35
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.