Macros

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

#include <vector>

namespace edmtest {
  struct OtherThing;
  typedef std::vector<OtherThing> OtherThingCollection;
}  // namespace edmtest

#endif