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

Class ValueArray1

rtpose_wrapper/src/gtest/gtest.h:10628–10640  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10626// Used in the Values() function to provide polymorphic capabilities.
10627template <typename T1>
10628class ValueArray1 {
10629 public:
10630 explicit ValueArray1(T1 v1) : v1_(v1) {}
10631
10632 template <typename T>
10633 operator ParamGenerator<T>() const { return ValuesIn(&v1_, &v1_ + 1); }
10634
10635 private:
10636 // No implementation - assignment is unsupported.
10637 void operator=(const ValueArray1& other);
10638
10639 const T1 v1_;
10640};
10641
10642template <typename T1, typename T2>
10643class ValueArray2 {

Callers

nothing calls this directly

Calls 1

ValuesInFunction · 0.85

Tested by

no test coverage detected