00001
00002
00003
00004 #ifndef ACE_HASH_MAP_WITH_ALLOCATOR_T_CPP
00005 #define ACE_HASH_MAP_WITH_ALLOCATOR_T_CPP
00006
00007 #include "ace/Hash_Map_With_Allocator_T.h"
00008
00009 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00010 # pragma once
00011 #endif
00012
00013 #if !defined (__ACE_INLINE__)
00014 #include "ace/Hash_Map_With_Allocator_T.i"
00015 #endif
00016
00017 template <class EXT_ID, class INT_ID>
00018 ACE_Hash_Map_With_Allocator<EXT_ID, INT_ID>::ACE_Hash_Map_With_Allocator (ACE_Allocator *alloc)
00019 : ACE_Hash_Map_Manager<EXT_ID, INT_ID, ACE_Null_Mutex> (alloc)
00020 {
00021 ACE_TRACE ("ACE_Hash_Map_With_Allocator<EXT_ID, INT_ID>::ACE_Hash_Map_With_Allocator");
00022 }
00023
00024 template <class EXT_ID, class INT_ID>
00025 ACE_Hash_Map_With_Allocator<EXT_ID, INT_ID>::ACE_Hash_Map_With_Allocator (size_t size,
00026 ACE_Allocator *alloc)
00027 : ACE_Hash_Map_Manager<EXT_ID, INT_ID, ACE_Null_Mutex> (size, alloc)
00028 {
00029 ACE_TRACE ("ACE_Hash_Map_With_Allocator<EXT_ID, INT_ID>::ACE_Hash_Map_With_Allocator");
00030 }
00031
00032 #endif