#include <Cleanup.h>
Public Member Functions | |
| ACE_Cleanup_Info (void) | |
| Default constructor. | |
| bool | operator== (const ACE_Cleanup_Info &o) const |
| Equality operator. | |
| bool | operator!= (const ACE_Cleanup_Info &o) const |
| Inequality operator. | |
Public 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_>. | |
Definition at line 66 of file Cleanup.h.
| ACE_Cleanup_Info::ACE_Cleanup_Info | ( | void | ) |
Default constructor.
| bool ACE_Cleanup_Info::operator!= | ( | const ACE_Cleanup_Info & | o | ) | const |
| bool ACE_Cleanup_Info::operator== | ( | const ACE_Cleanup_Info & | o | ) | const |
Equality operator.
Definition at line 46 of file Cleanup.cpp.
References cleanup_hook_, object_, and param_.
00047 { 00048 return o.object_ == this->object_ 00049 && o.cleanup_hook_ == this->cleanup_hook_ 00050 && o.param_ == this->param_; 00051 }
Cleanup hook that gets called back.
Definition at line 82 of file Cleanup.h.
Referenced by ACE_OS_Exit_Info::at_exit_i(), operator==(), and ACE_Thread_Manager::run_thread_exit_hooks().
Point to object that gets passed into the <cleanup_hook_>.
Definition at line 79 of file Cleanup.h.
Referenced by ACE_OS_Exit_Info::at_exit_i(), operator==(), and ACE_Thread_Manager::run_thread_exit_hooks().
| void* ACE_Cleanup_Info::param_ |
Parameter passed to the <cleanup_hook_>.
Definition at line 85 of file Cleanup.h.
Referenced by ACE_OS_Exit_Info::at_exit_i(), operator==(), and ACE_Thread_Manager::run_thread_exit_hooks().
1.4.7