#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 . | |
| ACE_CLEANUP_FUNC | cleanup_hook_ |
| Cleanup hook that gets called back. | |
| void * | param_ |
| Parameter passed to the . | |
Definition at line 66 of file Cleanup.h.
|
|
Default constructor.
|
|
|
Inequality operator.
Definition at line 54 of file Cleanup.cpp.
00055 {
00056 return !(*this == o);
00057 }
|
|
|
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(), ACE_OS_Exit_Info::call_hooks(), operator==(), and ACE_Thread_Manager::run_thread_exit_hooks(). |
|
|
Point to object that gets passed into the .
Definition at line 79 of file Cleanup.h. Referenced by ACE_OS_Exit_Info::at_exit_i(), ACE_OS_Exit_Info::call_hooks(), ACE_OS_Exit_Info::find(), operator==(), and ACE_Thread_Manager::run_thread_exit_hooks(). |
|
|
Parameter passed to the .
Definition at line 85 of file Cleanup.h. Referenced by ACE_OS_Exit_Info::at_exit_i(), ACE_OS_Exit_Info::call_hooks(), operator==(), and ACE_Thread_Manager::run_thread_exit_hooks(). |
1.3.6