proxygen
X Struct Reference

Public Member Functions

 X ()
 
 X (int a1_, std::string a2_)
 

Public Attributes

const int a1
 
const std::string a2
 

Detailed Description

Definition at line 642 of file SingletonTest.cpp.

Constructor & Destructor Documentation

X::X ( )
inline

Definition at line 643 of file SingletonTest.cpp.

643 : X(-1, "unset") {}
X::X ( int  a1_,
std::string  a2_ 
)
inline

Definition at line 644 of file SingletonTest.cpp.

References folly::INFO.

644  : a1(a1_), a2(a2_) {
645  LOG(INFO) << "X(" << a1 << "," << a2 << ")";
646  }
const std::string a2
const int a1

Member Data Documentation

const int X::a1

Definition at line 647 of file SingletonTest.cpp.

Referenced by TEST().

const std::string X::a2

Definition at line 648 of file SingletonTest.cpp.

Referenced by TEST().


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