Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
testing::gmock_matchers_test::AClass Class Reference
Inheritance diagram for testing::gmock_matchers_test::AClass:

Public Member Functions

 AClass ()
 
int n () const
 
void set_n (int new_n)
 
const std::string & s () const
 
void set_s (const std::string &new_s)
 
double & x () const
 

Detailed Description

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

Constructor & Destructor Documentation

◆ AClass()

testing::gmock_matchers_test::AClass::AClass ( )
inline

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

4149: n_(0) {}

Member Function Documentation

◆ n()

int testing::gmock_matchers_test::AClass::n ( ) const
inline

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

4152{ return n_; }
Here is the caller graph for this function:

◆ s()

const std::string & testing::gmock_matchers_test::AClass::s ( ) const
inline

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

4157{ return s_; }
Here is the caller graph for this function:

◆ set_n()

void testing::gmock_matchers_test::AClass::set_n ( int new_n)
inline

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

4154{ n_ = new_n; }
Here is the caller graph for this function:

◆ set_s()

void testing::gmock_matchers_test::AClass::set_s ( const std::string & new_s)
inline

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

4163{ s_ = new_s; }
Here is the caller graph for this function:

◆ x()

double & testing::gmock_matchers_test::AClass::x ( ) const
inline

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

4166{ return x_; }
Here is the caller graph for this function:

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