summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Naming/Shared_Hash_Map_T.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Naming/Shared_Hash_Map_T.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Naming/Shared_Hash_Map_T.cpp70
1 files changed, 0 insertions, 70 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Naming/Shared_Hash_Map_T.cpp b/TAO/orbsvcs/orbsvcs/Naming/Shared_Hash_Map_T.cpp
deleted file mode 100644
index a94b17a1e0a..00000000000
--- a/TAO/orbsvcs/orbsvcs/Naming/Shared_Hash_Map_T.cpp
+++ /dev/null
@@ -1,70 +0,0 @@
-// $Id$
-
-#ifndef ACE_SHARED_HASH_MAP_T_CPP
-#define ACE_SHARED_HASH_MAP_T_CPP
-
-#include "Shared_Hash_Map_T.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-template <class EXT_ID, class INT_ID>
-ACE_Shared_Hash_Map<EXT_ID, INT_ID>::ACE_Shared_Hash_Map (ACE_Allocator *alloc)
- : ACE_Hash_Map_Manager<EXT_ID, INT_ID, ACE_Null_Mutex> (alloc)
-{
-}
-
-template <class EXT_ID, class INT_ID>
-ACE_Shared_Hash_Map<EXT_ID, INT_ID>::ACE_Shared_Hash_Map (size_t size,
- ACE_Allocator *alloc)
- : ACE_Hash_Map_Manager<EXT_ID, INT_ID, ACE_Null_Mutex> (size, alloc)
-{
-}
-
-template <class EXT_ID, class INT_ID> int
-ACE_Shared_Hash_Map<EXT_ID, INT_ID>::close (ACE_Allocator *alloc)
-{
- this->allocator_ = alloc;
- return this->close_i ();
-}
-
-template <class EXT_ID, class INT_ID> int
-ACE_Shared_Hash_Map<EXT_ID, INT_ID>::bind (const EXT_ID &ext_id,
- const INT_ID &int_id,
- ACE_Allocator *alloc)
-{
- this->allocator_ = alloc;
- return this->bind_i (ext_id, int_id);
-}
-
-template <class EXT_ID, class INT_ID> int
-ACE_Shared_Hash_Map<EXT_ID, INT_ID>::unbind (const EXT_ID &ext_id,
- INT_ID &int_id,
- ACE_Allocator *alloc)
-{
- this->allocator_ = alloc;
- return this->unbind_i (ext_id, int_id);
-}
-
-template <class EXT_ID, class INT_ID> int
-ACE_Shared_Hash_Map<EXT_ID, INT_ID>::rebind (const EXT_ID &ext_id,
- const INT_ID &int_id,
- EXT_ID &old_ext_id,
- INT_ID &old_int_id,
- ACE_Allocator *alloc)
-{
- this->allocator_ = alloc;
- return this->rebind_i (ext_id, int_id, old_ext_id, old_int_id);
-}
-
-template <class EXT_ID, class INT_ID> int
-ACE_Shared_Hash_Map<EXT_ID, INT_ID>::find (const EXT_ID &ext_id,
- INT_ID &int_id,
- ACE_Allocator *alloc)
-{
- this->allocator_ = alloc;
- return this->find_i (ext_id, int_id);
-}
-
-#endif /* ACE_SHARED_HASH_MAP_T_CPP */