diff options
author | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-05-11 15:45:18 +0000 |
---|---|---|
committer | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-05-11 15:45:18 +0000 |
commit | 679e4e23530641497e57ce0602b3d9c3d9235610 (patch) | |
tree | f047d59af252abb22ba092dbd057fe936e8a0d57 /TAO/tao/Refcounted_ObjectKey.cpp | |
parent | 2386725fe12efac5b14ad1127a916927a97d0825 (diff) | |
download | ATCD-679e4e23530641497e57ce0602b3d9c3d9235610.tar.gz |
ChangeLogTag:Sun May 11 10:44:56 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
Diffstat (limited to 'TAO/tao/Refcounted_ObjectKey.cpp')
-rw-r--r-- | TAO/tao/Refcounted_ObjectKey.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/TAO/tao/Refcounted_ObjectKey.cpp b/TAO/tao/Refcounted_ObjectKey.cpp new file mode 100644 index 00000000000..b2cd277b7e0 --- /dev/null +++ b/TAO/tao/Refcounted_ObjectKey.cpp @@ -0,0 +1,23 @@ +//$Id$ +#include "Refcounted_ObjectKey.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) +{ +} |