00001 #ifndef CondFormats_simpleInheritance_h 00002 #define CondFormats_simpleInheritance_h 00003 class mybase{ 00004 public: 00005 mybase(){} 00006 }; 00007 class child:public mybase{ 00008 public: 00009 child(){} 00010 int b; 00011 }; 00012 #endif