Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:57

0001 #ifndef BOOSTTYPEOBJ_H
0002 #define BOOSTTYPEOBJ_H
0003 #include "CondFormats/Serialization/interface/Serializable.h"
0004 #include <cstdint>
0005 
0006 class boostTypeObj {
0007 public:
0008   int8_t a;
0009   int16_t b;
0010   uint8_t aa;
0011   uint16_t bb;
0012 
0013   COND_SERIALIZABLE;
0014 };
0015 #endif