MCPcopy Create free account
hub / github.com/OpenPTrack/open_ptrack_v2 / ValueArray6

Class ValueArray6

rtpose_wrapper/src/gtest/gtest.h:10728–10749  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10726template <typename T1, typename T2, typename T3, typename T4, typename T5,
10727 typename T6>
10728class ValueArray6 {
10729 public:
10730 ValueArray6(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6) : v1_(v1), v2_(v2),
10731 v3_(v3), v4_(v4), v5_(v5), v6_(v6) {}
10732
10733 template <typename T>
10734 operator ParamGenerator<T>() const {
10735 const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_};
10736 return ValuesIn(array);
10737 }
10738
10739 private:
10740 // No implementation - assignment is unsupported.
10741 void operator=(const ValueArray6& other);
10742
10743 const T1 v1_;
10744 const T2 v2_;
10745 const T3 v3_;
10746 const T4 v4_;
10747 const T5 v5_;
10748 const T6 v6_;
10749};
10750
10751template <typename T1, typename T2, typename T3, typename T4, typename T5,
10752 typename T6, typename T7>

Callers

nothing calls this directly

Calls 1

ValuesInFunction · 0.85

Tested by

no test coverage detected