Re: [ROOT] rootcint and shadow classes

From: Denis Bertini (dbertini@lxg0402.gsi.de)
Date: Thu Jul 11 2002 - 11:56:42 MEST


Hi Rene, 
 In my case i have declared something like:

 class Class2 : public Class1 {
  protected:
  enum {kSlopeMode,kKickPosMode,kMdcTofMode} fMode;
  // ... 

 }; 

 ( Class1 is a TObject ) 
 and the dictionnary generation failed. 
 I had to put a name like:

 

class Class2 : public Class1 {
  protected:
  enum NAME {kSlopeMode,kKickPosMode,kMdcTofMode} fMode;
  // ...
   
 };

 and it worked fine . 
                                       Denis



This archive was generated by hypermail 2b29 : Sat Jan 04 2003 - 23:50:59 MET