#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: Tue May 13 17:07:34 2008
Last generated: 2008-05-13 17:07
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.