Xmipp  v3.23.11-Nereus
Classes | Public Member Functions | List of all members
testing::PolymorphicAction< Impl > Class Template Reference

#include <gmock-actions.h>

Public Member Functions

 PolymorphicAction (const Impl &impl)
 
template<typename F >
 operator Action< F > () const
 

Detailed Description

template<typename Impl>
class testing::PolymorphicAction< Impl >

Definition at line 864 of file gmock-actions.h.

Constructor & Destructor Documentation

◆ PolymorphicAction()

template<typename Impl >
testing::PolymorphicAction< Impl >::PolymorphicAction ( const Impl &  impl)
inlineexplicit

Definition at line 866 of file gmock-actions.h.

866 : impl_(impl) {}

Member Function Documentation

◆ operator Action< F >()

template<typename Impl >
template<typename F >
testing::PolymorphicAction< Impl >::operator Action< F > ( ) const
inline

Definition at line 869 of file gmock-actions.h.

869  {
870  return Action<F>(new MonomorphicImpl<F>(impl_));
871  }

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