#ifndef __B_H__ #define __B_H__ #include "TObject.h" class B : public TObject { public: B(); virtual ~B(); Int_t b; Int_t Bmethod(); Int_t Bmethod1(); ClassDef(B,1) }; #endif