ACE 8.0.1
|
For maintaining a list of ACE_Cleanup_Info items. More...
#include <Cleanup.h>
Public Member Functions | |
ACE_Cleanup_Info_Node () | |
ACE_Cleanup_Info_Node (void *object, ACE_CLEANUP_FUNC cleanup_hook, void *param, const char *name) | |
~ACE_Cleanup_Info_Node () | |
bool | operator== (const ACE_Cleanup_Info_Node &o) const |
Equality operator. | |
bool | operator!= (const ACE_Cleanup_Info_Node &o) const |
Inequality operator. | |
void * | object () |
ACE_CLEANUP_FUNC | cleanup_hook () |
void * | param () |
![]() | |
ACE_Cleanup_Info_Node * | prev () const |
Head and tail of the list. | |
void | prev (ACE_Cleanup_Info_Node *) |
Head and tail of the list. | |
ACE_Cleanup_Info_Node * | next () const |
Head and tail of the list. | |
void | next (ACE_Cleanup_Info_Node *) |
Head and tail of the list. | |
Public Attributes | |
ACE_ALLOC_HOOK_DECLARE | |
Private Attributes | |
void * | object_ |
Point to object that gets passed into the <cleanup_hook_>. | |
ACE_CLEANUP_FUNC | cleanup_hook_ |
Cleanup hook that gets called back. | |
void * | param_ |
Parameter passed to the <cleanup_hook_>. | |
const char * | name_ |
Name of the cleanup object. | |
Additional Inherited Members | |
![]() | |
ACE_Intrusive_List_Node ()=default | |
Constructor. | |
For maintaining a list of ACE_Cleanup_Info items.
For internal use by ACE_Object_Manager.
ACE_Cleanup_Info_Node::ACE_Cleanup_Info_Node | ( | ) |
ACE_Cleanup_Info_Node::ACE_Cleanup_Info_Node | ( | void * | object, |
ACE_CLEANUP_FUNC | cleanup_hook, | ||
void * | param, | ||
const char * | name ) |
ACE_Cleanup_Info_Node::~ACE_Cleanup_Info_Node | ( | ) |
|
inline |
|
inline |
bool ACE_Cleanup_Info_Node::operator!= | ( | const ACE_Cleanup_Info_Node & | o | ) | const |
Inequality operator.
bool ACE_Cleanup_Info_Node::operator== | ( | const ACE_Cleanup_Info_Node & | o | ) | const |
Equality operator.
|
inline |
ACE_Cleanup_Info_Node::ACE_ALLOC_HOOK_DECLARE |
|
private |
Cleanup hook that gets called back.
|
private |
Name of the cleanup object.
|
private |
Point to object that gets passed into the <cleanup_hook_>.
|
private |
Parameter passed to the <cleanup_hook_>.