child

mybase

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef CondFormats_simpleInheritance_h
#define CondFormats_simpleInheritance_h

#include "CondFormats/Serialization/interface/Serializable.h"
class mybase {
public:
  mybase() {}

  COND_SERIALIZABLE;
};
class child : public mybase {
public:
  child() {}
  int b;

  COND_SERIALIZABLE;
};
#endif