Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
testing::gmock_matchers_test::NotCopyable Class Reference

Public Member Functions

 NotCopyable (int a_value)
 
int value () const
 
bool operator== (const NotCopyable &rhs) const
 
bool operator>= (const NotCopyable &rhs) const
 

Detailed Description

Definition at line 4685 of file gmock-matchers_test.cc.

Constructor & Destructor Documentation

◆ NotCopyable()

testing::gmock_matchers_test::NotCopyable::NotCopyable ( int a_value)
inlineexplicit

Definition at line 4687 of file gmock-matchers_test.cc.

4687: value_(a_value) {}

Member Function Documentation

◆ operator==()

bool testing::gmock_matchers_test::NotCopyable::operator== ( const NotCopyable & rhs) const
inline

Definition at line 4691 of file gmock-matchers_test.cc.

4691 {
4692 return value() == rhs.value();
4693 }
Here is the call graph for this function:

◆ operator>=()

bool testing::gmock_matchers_test::NotCopyable::operator>= ( const NotCopyable & rhs) const
inline

Definition at line 4695 of file gmock-matchers_test.cc.

4695 {
4696 return value() >= rhs.value();
4697 }
Here is the call graph for this function:

◆ value()

int testing::gmock_matchers_test::NotCopyable::value ( ) const
inline

Definition at line 4689 of file gmock-matchers_test.cc.

4689{ return value_; }
Here is the caller graph for this function:

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