blob: 960bb12de69c13d892fc7a67e175fc2ce801e3a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
//$Id$
#include "Refcounted_ObjectKey.h"
#include "ace/Log_Msg.h"
#if !defined (__ACE_INLINE__)
#include "Refcounted_ObjectKey.inl"
#endif /* defined INLINE */
ACE_RCSID(tao,
Refcounted_ObjectKey,
"$Id$")
TAO::Refcounted_ObjectKey::Refcounted_ObjectKey (const TAO::ObjectKey &key)
: object_key_ (key)
, ref_count_ (1)
{
}
TAO::Refcounted_ObjectKey::~Refcounted_ObjectKey (void)
{
}
long
TAO::Refcounted_ObjectKey::decr_refcount (void)
{
if (--this->ref_count_ > 0)
return this->ref_count_;
ACE_ASSERT (this->ref_count_ == 0);
delete this;
return 0;
}
|