Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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