1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "DataFormats/TestObjects/interface/ThingWithMerge.h"
#include <utility>
namespace edmtest {
bool ThingWithMerge::mergeProduct(ThingWithMerge const& newThing) {
a += newThing.a;
return true;
}
void ThingWithMerge::swap(ThingWithMerge& iOther) { std::swap(a, iOther.a); }
} // namespace edmtest
|