proxygen
Base Class Reference

Public Member Functions

 Base (int an_x)
 
int x () const
 
virtual ~Base ()
 
virtual int foo () const
 
 Base (int an_x)
 
int x () const
 
 Base (int an_x)
 
int x () const
 

Private Attributes

int x_
 

Detailed Description

Definition at line 5155 of file gtest_unittest.cc.

Constructor & Destructor Documentation

Base::Base ( int  an_x)
inlineexplicit

Definition at line 5157 of file gtest_unittest.cc.

5157 : x_(an_x) {}
int x_
virtual Base::~Base ( )
inlinevirtual

Definition at line 29 of file PortabilityTest.cpp.

29 {}
Base::Base ( int  an_x)
inlineexplicit

Definition at line 5157 of file gtest_unittest.cc.

5157 : x_(an_x) {}
int x_
Base::Base ( int  an_x)
inlineexplicit

Definition at line 5157 of file gtest_unittest.cc.

5157 : x_(an_x) {}
int x_

Member Function Documentation

virtual int Base::foo ( ) const
inlinevirtual

Definition at line 30 of file PortabilityTest.cpp.

30  {
31  return 1;
32  }
int Base::x ( ) const
inline

Definition at line 5158 of file gtest_unittest.cc.

References x_.

5158 { return x_; }
int x_
int Base::x ( ) const
inline

Definition at line 5158 of file gtest_unittest.cc.

References x_.

5158 { return x_; }
int x_
int Base::x ( ) const
inline

Definition at line 5158 of file gtest_unittest.cc.

References x_.

5158 { return x_; }
int x_

Member Data Documentation

int Base::x_
private

Definition at line 5160 of file gtest_unittest.cc.


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