Xmipp  v3.23.11-Nereus
Public Types | Public Member Functions | List of all members
testing::internal::ParamGenerator< T > Class Template Reference

#include <gtest-param-util.h>

Public Types

typedef ParamIterator< T > iterator
 

Public Member Functions

 ParamGenerator (ParamGeneratorInterface< T > *impl)
 
 ParamGenerator (const ParamGenerator &other)
 
ParamGeneratoroperator= (const ParamGenerator &other)
 
iterator begin () const
 
iterator end () const
 

Detailed Description

template<typename T>
class testing::internal::ParamGenerator< T >

Definition at line 93 of file gtest-param-util.h.

Member Typedef Documentation

◆ iterator

template<typename T>
typedef ParamIterator<T> testing::internal::ParamGenerator< T >::iterator

Definition at line 189 of file gtest-param-util.h.

Constructor & Destructor Documentation

◆ ParamGenerator() [1/2]

template<typename T>
testing::internal::ParamGenerator< T >::ParamGenerator ( ParamGeneratorInterface< T > *  impl)
inlineexplicit

Definition at line 191 of file gtest-param-util.h.

191 : impl_(impl) {}

◆ ParamGenerator() [2/2]

template<typename T>
testing::internal::ParamGenerator< T >::ParamGenerator ( const ParamGenerator< T > &  other)
inline

Definition at line 192 of file gtest-param-util.h.

192 : impl_(other.impl_) {}

Member Function Documentation

◆ begin()

template<typename T>
iterator testing::internal::ParamGenerator< T >::begin ( ) const
inline

Definition at line 199 of file gtest-param-util.h.

199 { return iterator(impl_->Begin()); }

◆ end()

template<typename T>
iterator testing::internal::ParamGenerator< T >::end ( ) const
inline

Definition at line 200 of file gtest-param-util.h.

200 { return iterator(impl_->End()); }

◆ operator=()

template<typename T>
ParamGenerator& testing::internal::ParamGenerator< T >::operator= ( const ParamGenerator< T > &  other)
inline

Definition at line 194 of file gtest-param-util.h.

194  {
195  impl_ = other.impl_;
196  return *this;
197  }

The documentation for this class was generated from the following file: