1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef DataFormats_TestObjects_Thing_h
#define DataFormats_TestObjects_Thing_h
#include "FWCore/Utilities/interface/typedefs.h"
namespace edmtest {
struct Thing {
~Thing() {}
Thing() : a() {}
explicit Thing(cms_int32_t v) : a{v} {}
cms_int32_t a;
};
} // namespace edmtest
#endif
|