ACE
6.3.3
|
For maintaining a list of ACE_Cleanup_Info items. More...
#include <Cleanup.h>
Public Member Functions | |
ACE_Cleanup_Info_Node (void) | |
ACE_Cleanup_Info_Node (void *object, ACE_CLEANUP_FUNC cleanup_hook, void *param, const char *name) | |
~ACE_Cleanup_Info_Node (void) | |
bool | operator== (const ACE_Cleanup_Info_Node &o) const |
Equality operator. More... | |
bool | operator!= (const ACE_Cleanup_Info_Node &o) const |
Inequality operator. More... | |
void * | object (void) |
ACE_CLEANUP_FUNC | cleanup_hook (void) |
void * | param (void) |
Public Member Functions inherited from ACE_Intrusive_List_Node< ACE_Cleanup_Info_Node > | |
ACE_Cleanup_Info_Node * | prev (void) const |
void | prev (ACE_Cleanup_Info_Node *) |
ACE_Cleanup_Info_Node * | next (void) const |
void | next (ACE_Cleanup_Info_Node *) |
Private Attributes | |
void * | object_ |
Point to object that gets passed into the <cleanup_hook_>. More... | |
ACE_CLEANUP_FUNC | cleanup_hook_ |
Cleanup hook that gets called back. More... | |
void * | param_ |
Parameter passed to the <cleanup_hook_>. More... | |
const char * | name_ |
Name of the cleanup object. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from ACE_Intrusive_List_Node< ACE_Cleanup_Info_Node > | |
ACE_Intrusive_List_Node (void) | |
Constructor. More... | |
For maintaining a list of ACE_Cleanup_Info items.
For internal use by ACE_Object_Manager.
ACE_Cleanup_Info_Node::ACE_Cleanup_Info_Node | ( | void | ) |
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 | ( | void | ) |
|
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 |
|
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_>.