#include <Recyclable.h>
Inheritance diagram for ACE_Recyclable:

Public Methods | |
| virtual | ~ACE_Recyclable (void) |
| Destructor. More... | |
| ACE_Recyclable_State | recycle_state (void) const |
| Get the recyclable bit. More... | |
| void | recycle_state (ACE_Recyclable_State new_state) |
| Set the recyclable bit. More... | |
Protected Methods | |
| ACE_Recyclable (ACE_Recyclable_State initial_state) | |
| Protected constructor. More... | |
Protected Attributes | |
| ACE_Recyclable_State | recycle_state_ |
| Our state. More... | |
Definition at line 52 of file Recyclable.h.
|
|
Destructor.
Definition at line 18 of file Recyclable.cpp.
00019 {
00020 }
|
|
|
Protected constructor.
Definition at line 13 of file Recyclable.cpp. References ACE_Recyclable_State.
00014 : recycle_state_ (initial_state) 00015 { 00016 } |
|
|
Set the recyclable bit.
Definition at line 13 of file Recyclable.inl. References ACE_RECYCLABLE_CLOSED, ACE_Recyclable_State, and recycle_state_.
00014 {
00015 if (this->recycle_state_ == ACE_RECYCLABLE_CLOSED)
00016 return;
00017
00018 this->recycle_state_ = new_state;
00019 }
|
|
|
|
Our state.
Definition at line 69 of file Recyclable.h. Referenced by recycle_state. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002