#include <RefCount.h>
Inheritance diagram for Reco::RefCount:

Public Member Functions | |
| RefCount () | |
| virtual | ~RefCount () |
| void | add_ref () |
| void | release () |
| short | use_count () const |
Private Attributes | |
| short | fCount |
|
|
Definition at line 32 of file RefCount.h. 00032 : fCount(0) 00033 {}
|
|
|
Definition at line 35 of file RefCount.h. 00036 {}
|
|
|
Definition at line 22 of file RefCount.h. 00022 { ++fCount; }
|
|
|
Definition at line 23 of file RefCount.h. 00023 { if ( --fCount == 0 ) delete this; }
|
|
|
Definition at line 25 of file RefCount.h. 00025 { return fCount; }
|
|
|
Definition at line 29 of file RefCount.h. |
1.3.9.1