#include <Configuration.h>
Inheritance diagram for ACE_Section_Key_Internal:

Public Methods | |
| virtual | ~ACE_Section_Key_Internal (void) |
| Virtual destructor, make sure descendants are virtual! More... | |
| virtual int | add_ref (void) |
| Increment reference count. More... | |
| virtual int | dec_ref (void) |
| Decrement reference count. Will delete this if count gets to 0. More... | |
Protected Methods | |
| ACE_Section_Key_Internal (void) | |
| ACE_Section_Key_Internal (const ACE_Section_Key_Internal &rhs) | |
| ACE_Section_Key_Internal & | operator= (ACE_Section_Key_Internal &rhs) |
Protected Attributes | |
| u_int | ref_count_ |
|
|
Virtual destructor, make sure descendants are virtual!
Definition at line 91 of file Configuration.cpp.
00092 {
00093 }
|
|
|
Definition at line 86 of file Configuration.cpp.
00087 : ref_count_ (0) 00088 { 00089 } |
|
|
|
|
|
Increment reference count.
Definition at line 96 of file Configuration.cpp. References ref_count_. Referenced by ACE_Configuration_Section_Key::ACE_Configuration_Section_Key, and ACE_Configuration_Section_Key::operator=.
00097 {
00098 ++ref_count_;
00099 return 0;
00100 }
|
|
|
Decrement reference count. Will delete this if count gets to 0.
Definition at line 103 of file Configuration.cpp. References ref_count_. Referenced by ACE_Configuration_Section_Key::operator=, and ACE_Configuration_Section_Key::~ACE_Configuration_Section_Key.
00104 {
00105 if (!--ref_count_)
00106 delete this;
00107 return 0;
00108 }
|
|
|
|
|
|
Definition at line 80 of file Configuration.h. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002