Ord

StreamTestTmpl

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#ifndef DataFormats_TestObjects_StreamTestTmpl_h
#define DataFormats_TestObjects_StreamTestTmpl_h

#include <vector>
#include "DataFormats/TestObjects/interface/StreamTestSimple.h"

namespace edmtestprod {
  template <class T>
  struct Ord {
    T data_;
  };

  template <class T>  //, class U = Ord<T> >
  struct StreamTestTmpl {
    T data_;
    //U more_;
  };

  typedef Ord<Simple> OSimple;
  //typedef Simple OSimple;
}  // namespace edmtestprod

#endif