CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
simpleInheritance.h
Go to the documentation of this file.
1 #ifndef CondFormats_simpleInheritance_h
2 #define CondFormats_simpleInheritance_h
3 class mybase{
4  public:
5  mybase(){}
6 };
7 class child:public mybase{
8  public:
9  child(){}
10  int b;
11 };
12 #endif