Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11
#ifndef DataFormats_TestObjects_ThingCollectionfwd_h
#define DataFormats_TestObjects_ThingCollectionfwd_h

#include <vector>

namespace edmtest {
  struct Thing;
  typedef std::vector<Thing> ThingCollection;
}  // namespace edmtest

#endif