1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef DataFormats_TestObjects_StreamTestThing_h
#define DataFormats_TestObjects_StreamTestThing_h
#include "FWCore/Utilities/interface/typedefs.h"
#include <vector>
namespace edmtestprod {
struct StreamTestThing {
~StreamTestThing();
explicit StreamTestThing(int sz);
StreamTestThing();
std::vector<cms_int32_t> data_;
};
} // namespace edmtestprod
#endif
|