Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DataFormats_TestObjects_StreamTestSimple_h
0002 #define DataFormats_TestObjects_StreamTestSimple_h
0003 
0004 #include "DataFormats/Common/interface/SortedCollection.h"
0005 #include "FWCore/Utilities/interface/typedefs.h"
0006 
0007 namespace edmtestprod {
0008   struct Simple {
0009     typedef int key_type;
0010     cms_int32_t key_;
0011     double data_;
0012 
0013     key_type id() const { return key_; }
0014     bool operator==(Simple const&) const { return true; }
0015     bool operator<(Simple const&) const { return true; }
0016   };
0017 
0018   typedef edm::SortedCollection<Simple> StreamTestSimple;
0019 
0020   struct X0123456789012345678901234567890123456789012345678901234567890123456789012345678901 {
0021     int blob_;
0022   };
0023 
0024   typedef X0123456789012345678901234567890123456789012345678901234567890123456789012345678901 Pig;
0025 }  // namespace edmtestprod
0026 
0027 #endif