| 14176 | typedef ::std::tr1::tuple<T1, T2, T3, T4, T5> ParamType; |
| 14177 | |
| 14178 | CartesianProductGenerator5(const ParamGenerator<T1>& g1, |
| 14179 | const ParamGenerator<T2>& g2, const ParamGenerator<T3>& g3, |
| 14180 | const ParamGenerator<T4>& g4, const ParamGenerator<T5>& g5) |
| 14181 | : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5) {} |
| 14182 | virtual ~CartesianProductGenerator5() {} |
| 14183 | |
| 14184 | virtual ParamIteratorInterface<ParamType>* Begin() const { |
nothing calls this directly
no outgoing calls
no test coverage detected