| 13778 | typedef ::std::tr1::tuple<T1, T2> ParamType; |
| 13779 | |
| 13780 | CartesianProductGenerator2(const ParamGenerator<T1>& g1, |
| 13781 | const ParamGenerator<T2>& g2) |
| 13782 | : g1_(g1), g2_(g2) {} |
| 13783 | virtual ~CartesianProductGenerator2() {} |
| 13784 | |
| 13785 | virtual ParamIteratorInterface<ParamType>* Begin() const { |
nothing calls this directly
no outgoing calls
no test coverage detected