proxygen
testing::internal::NotMatcher< InnerMatcher > Class Template Reference

#include <gmock-matchers.h>

Public Member Functions

 NotMatcher (InnerMatcher matcher)
 
template<typename T >
 operator Matcher< T > () const
 
 NotMatcher (InnerMatcher matcher)
 
template<typename T >
 operator Matcher< T > () const
 
 NotMatcher (InnerMatcher matcher)
 
template<typename T >
 operator Matcher< T > () const
 

Private Member Functions

 GTEST_DISALLOW_ASSIGN_ (NotMatcher)
 
 GTEST_DISALLOW_ASSIGN_ (NotMatcher)
 
 GTEST_DISALLOW_ASSIGN_ (NotMatcher)
 

Private Attributes

InnerMatcher matcher_
 

Detailed Description

template<typename InnerMatcher>
class testing::internal::NotMatcher< InnerMatcher >

Definition at line 1470 of file gmock-matchers.h.

Constructor & Destructor Documentation

template<typename InnerMatcher >
testing::internal::NotMatcher< InnerMatcher >::NotMatcher ( InnerMatcher  matcher)
inlineexplicit

Definition at line 1472 of file gmock-matchers.h.

1472 : matcher_(matcher) {}
template<typename InnerMatcher >
testing::internal::NotMatcher< InnerMatcher >::NotMatcher ( InnerMatcher  matcher)
inlineexplicit

Definition at line 1472 of file gmock-matchers.h.

1472 : matcher_(matcher) {}
template<typename InnerMatcher >
testing::internal::NotMatcher< InnerMatcher >::NotMatcher ( InnerMatcher  matcher)
inlineexplicit

Definition at line 1472 of file gmock-matchers.h.

1472 : matcher_(matcher) {}

Member Function Documentation

template<typename InnerMatcher >
testing::internal::NotMatcher< InnerMatcher >::GTEST_DISALLOW_ASSIGN_ ( NotMatcher< InnerMatcher >  )
private
template<typename InnerMatcher >
testing::internal::NotMatcher< InnerMatcher >::GTEST_DISALLOW_ASSIGN_ ( NotMatcher< InnerMatcher >  )
private
template<typename InnerMatcher >
testing::internal::NotMatcher< InnerMatcher >::GTEST_DISALLOW_ASSIGN_ ( NotMatcher< InnerMatcher >  )
private
template<typename InnerMatcher >
template<typename T >
testing::internal::NotMatcher< InnerMatcher >::operator Matcher< T > ( ) const
inline

Definition at line 1477 of file gmock-matchers.h.

1477  {
1478  return Matcher<T>(new NotMatcherImpl<T>(SafeMatcherCast<T>(matcher_)));
1479  }
template<typename InnerMatcher >
template<typename T >
testing::internal::NotMatcher< InnerMatcher >::operator Matcher< T > ( ) const
inline

Definition at line 1477 of file gmock-matchers.h.

References GTEST_DISALLOW_ASSIGN_.

1477  {
1478  return Matcher<T>(new NotMatcherImpl<T>(SafeMatcherCast<T>(matcher_)));
1479  }
template<typename InnerMatcher >
template<typename T >
testing::internal::NotMatcher< InnerMatcher >::operator Matcher< T > ( ) const
inline

Definition at line 1477 of file gmock-matchers.h.

References GTEST_DISALLOW_ASSIGN_.

1477  {
1478  return Matcher<T>(new NotMatcherImpl<T>(SafeMatcherCast<T>(matcher_)));
1479  }

Member Data Documentation

template<typename InnerMatcher >
InnerMatcher testing::internal::NotMatcher< InnerMatcher >::matcher_
private

Definition at line 1482 of file gmock-matchers.h.


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