![]() |
Use this in a code block that should ignore CallStack traces. More...
#include <CallStack.h>
Public Member Functions | |
Ignore () | |
~Ignore () | |
Static Private Attributes | |
static int | s_count = 0 |
Use this in a code block that should ignore CallStack traces.
Definition at line 78 of file CallStack.h.
FIX::CallStack::Ignore::Ignore | ( | ) | [inline] |
Definition at line 81 of file CallStack.h.
References FIX::CallStack::ignore(), and s_count.
00082 { s_count++; 00083 CallStack::ignore(true); 00084 }
FIX::CallStack::Ignore::~Ignore | ( | ) | [inline] |
Definition at line 85 of file CallStack.h.
References FIX::CallStack::ignore(), and s_count.
00086 { s_count--; 00087 if( s_count == 0 ) 00088 CallStack::ignore(false); 00089 }
int FIX::CallStack::Ignore::s_count = 0 [static, private] |
Definition at line 92 of file CallStack.h.