Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DataFormats_TestObjects_StreamTestThing_h
0002 #define DataFormats_TestObjects_StreamTestThing_h
0003 
0004 #include "FWCore/Utilities/interface/typedefs.h"
0005 
0006 #include <vector>
0007 
0008 namespace edmtestprod {
0009 
0010   struct StreamTestThing {
0011     ~StreamTestThing();
0012     explicit StreamTestThing(int sz);
0013     StreamTestThing();
0014 
0015     std::vector<cms_int32_t> data_;
0016   };
0017 
0018 }  // namespace edmtestprod
0019 
0020 #endif