summaryrefslogtreecommitdiff
path: root/TAO/tao/Refcounted_ObjectKey.cpp
blob: 64f765258d5623a7730204693f768b9c17f9fe28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// -*- C++ -*-
#include "tao/Refcounted_ObjectKey.h"
#include "ace/Log_Msg.h"

#if !defined (__ACE_INLINE__)
#include "tao/Refcounted_ObjectKey.inl"
#endif /* defined INLINE */

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

TAO::Refcounted_ObjectKey::Refcounted_ObjectKey (const TAO::ObjectKey &key)
  : object_key_ (key)
  , refcount_ (1)
{
}

TAO::Refcounted_ObjectKey::~Refcounted_ObjectKey ()
{
}

TAO_END_VERSIONED_NAMESPACE_DECL