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

Class ValueArray8

rtpose_wrapper/src/gtest/gtest.h:10779–10803  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10777template <typename T1, typename T2, typename T3, typename T4, typename T5,
10778 typename T6, typename T7, typename T8>
10779class ValueArray8 {
10780 public:
10781 ValueArray8(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7,
10782 T8 v8) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),
10783 v8_(v8) {}
10784
10785 template <typename T>
10786 operator ParamGenerator<T>() const {
10787 const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_};
10788 return ValuesIn(array);
10789 }
10790
10791 private:
10792 // No implementation - assignment is unsupported.
10793 void operator=(const ValueArray8& other);
10794
10795 const T1 v1_;
10796 const T2 v2_;
10797 const T3 v3_;
10798 const T4 v4_;
10799 const T5 v5_;
10800 const T6 v6_;
10801 const T7 v7_;
10802 const T8 v8_;
10803};
10804
10805template <typename T1, typename T2, typename T3, typename T4, typename T5,
10806 typename T6, typename T7, typename T8, typename T9>

Callers

nothing calls this directly

Calls 1

ValuesInFunction · 0.85

Tested by

no test coverage detected