CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/CondFormats/Calibration/interface/simpleInheritance.h

Go to the documentation of this file.
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