CMS 3D CMS Logo

simpleInheritance.h
Go to the documentation of this file.
1 #ifndef CondFormats_simpleInheritance_h
2 #define CondFormats_simpleInheritance_h
3 
5 class mybase {
6 public:
7  mybase() {}
8 
10 };
11 class child : public mybase {
12 public:
13  child() {}
14  int b;
15 
17 };
18 #endif
mybase
Definition: simpleInheritance.h:5
COND_SERIALIZABLE
#define COND_SERIALIZABLE
Definition: Serializable.h:39
mybase::mybase
mybase()
Definition: simpleInheritance.h:7
Serializable.h
child::child
child()
Definition: simpleInheritance.h:13
child
Definition: simpleInheritance.h:11
child::b
int b
Definition: simpleInheritance.h:14