ThingWithIsEqual

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef DataFormats_TestObjects_ThingWithIsEqual_h
#define DataFormats_TestObjects_ThingWithIsEqual_h

#include "FWCore/Utilities/interface/typedefs.h"

namespace edmtest {

  struct ThingWithIsEqual {
    ~ThingWithIsEqual() {}
    ThingWithIsEqual() : a() {}
    explicit ThingWithIsEqual(cms_int32_t v) : a(v) {}
    bool isProductEqual(ThingWithIsEqual const& thingWithIsEqual) const;
    cms_int32_t a;
  };

}  // namespace edmtest

#endif