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

Class ValueArray7

rtpose_wrapper/src/gtest/gtest.h:10753–10775  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10751template <typename T1, typename T2, typename T3, typename T4, typename T5,
10752 typename T6, typename T7>
10753class ValueArray7 {
10754 public:
10755 ValueArray7(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7) : v1_(v1),
10756 v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7) {}
10757
10758 template <typename T>
10759 operator ParamGenerator<T>() const {
10760 const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_};
10761 return ValuesIn(array);
10762 }
10763
10764 private:
10765 // No implementation - assignment is unsupported.
10766 void operator=(const ValueArray7& other);
10767
10768 const T1 v1_;
10769 const T2 v2_;
10770 const T3 v3_;
10771 const T4 v4_;
10772 const T5 v5_;
10773 const T6 v6_;
10774 const T7 v7_;
10775};
10776
10777template <typename T1, typename T2, typename T3, typename T4, typename T5,
10778 typename T6, typename T7, typename T8>

Callers

nothing calls this directly

Calls 1

ValuesInFunction · 0.85

Tested by

no test coverage detected