QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
CountedObject Struct Reference

Public Member Functions

 CountedObject (bool b)
 
 CountedObject (CountedObject const &rhs)
 
 ~CountedObject ()
 

Public Attributes

bool _throw
 

Static Public Attributes

static int _counter = 0
 

Constructor & Destructor Documentation

◆ CountedObject() [1/2]

CountedObject::CountedObject ( bool  b)
inline
1256: _throw(b) { ++_counter; }
bool _throw
Definition test_optional.cpp:1255
static int _counter
Definition test_optional.cpp:1254

◆ CountedObject() [2/2]

CountedObject::CountedObject ( CountedObject const &  rhs)
inline
1257: _throw(rhs._throw) { if (_throw) throw int(); }

◆ ~CountedObject()

CountedObject::~CountedObject ( )
inline
1258{ --_counter; }

Member Data Documentation

◆ _counter

int CountedObject::_counter = 0
static

◆ _throw

bool CountedObject::_throw

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