1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef DataFormats_TestObjects_ThingCollection_h
#define DataFormats_TestObjects_ThingCollection_h
#include <vector>
#include "DataFormats/TestObjects/interface/Thing.h"
namespace edmtest {
typedef std::vector<edmtest::Thing> ThingCollection;
}
#endif
|