#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. | |
bool | operator!= (const ACE_Cleanup_Info_Node &o) const |
Inequality operator. | |
void * | object (void) |
ACE_CLEANUP_FUNC | cleanup_hook (void) |
void * | param (void) |
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. |
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 | ) |
ACE_CLEANUP_FUNC ACE_Cleanup_Info_Node::cleanup_hook | ( | void | ) |
void * ACE_Cleanup_Info_Node::object | ( | void | ) |
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.
void * ACE_Cleanup_Info_Node::param | ( | void | ) |
Cleanup hook that gets called back.
const char* ACE_Cleanup_Info_Node::name_ [private] |
Name of the cleanup object.
void* ACE_Cleanup_Info_Node::object_ [private] |
Point to object that gets passed into the <cleanup_hook_>.
void* ACE_Cleanup_Info_Node::param_ [private] |
Parameter passed to the <cleanup_hook_>.