Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:18

0001 #ifndef DataFormats_TestObjects_Thing_h
0002 #define DataFormats_TestObjects_Thing_h
0003 
0004 #include "FWCore/Utilities/interface/typedefs.h"
0005 
0006 namespace edmtest {
0007 
0008   struct Thing {
0009     ~Thing() {}
0010     Thing() : a() {}
0011     explicit Thing(cms_int32_t v) : a{v} {}
0012     cms_int32_t a;
0013   };
0014 
0015 }  // namespace edmtest
0016 
0017 #endif