IOVDescription

Macros

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

#include "CondFormats/Serialization/interface/Serializable.h"

namespace cond {

  class IOVDescription {
  public:
    IOVDescription() {}
    virtual ~IOVDescription() {}
    virtual IOVDescription* clone() const { return new IOVDescription(*this); }

  private:
    COND_SERIALIZABLE;
  };

}  // namespace cond

#endif