proxygen
B Struct Reference

Inherits A, A, and A.

Classes

struct  BException
 

Public Member Functions

 B (int x)
 
 B (const B &o)
 
 ~B ()
 

Public Attributes

int x_
 

Detailed Description

Definition at line 431 of file DynamicConverterTest.cpp.

Constructor & Destructor Documentation

B::B ( int  x)
inline

Definition at line 434 of file DynamicConverterTest.cpp.

References constructB, and ticker.

434  : x_(x) {
435  if (ticker-- == 0) {
436  throw BException();
437  }
438  constructB++;
439  }
Definition: InvokeTest.cpp:58
static int ticker
int x_
static int constructB
B::B ( const B o)
inline

Definition at line 440 of file DynamicConverterTest.cpp.

References constructB.

440  : x_(o.x_) {
441  constructB++;
442  }
int x_
static int constructB
B::~B ( )
inline

Definition at line 443 of file DynamicConverterTest.cpp.

References destroyB.

443  {
444  destroyB++;
445  }
static int destroyB

Member Data Documentation

int B::x_

Definition at line 446 of file DynamicConverterTest.cpp.


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