summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorjxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-06 20:10:33 +0000
committerjxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-06 20:10:33 +0000
commit35b723f9dd30c264601502dc434ca6f050066402 (patch)
tree0a6834f42d064cac69c0a050abebe2e6e3a8c103 /apps
parentd855a8f2d691e8db9d86afcf2d2b0a5953c922f4 (diff)
downloadATCD-35b723f9dd30c264601502dc434ca6f050066402.tar.gz
*** empty log message ***
Diffstat (limited to 'apps')
-rw-r--r--apps/JAWS/PROTOTYPE/JAWS/Cache_Manager.cpp17
-rw-r--r--apps/JAWS/PROTOTYPE/JAWS/Cache_Manager_T.cpp6
2 files changed, 4 insertions, 19 deletions
diff --git a/apps/JAWS/PROTOTYPE/JAWS/Cache_Manager.cpp b/apps/JAWS/PROTOTYPE/JAWS/Cache_Manager.cpp
index 18370f4a862..0b1d300d0d1 100644
--- a/apps/JAWS/PROTOTYPE/JAWS/Cache_Manager.cpp
+++ b/apps/JAWS/PROTOTYPE/JAWS/Cache_Manager.cpp
@@ -5,6 +5,7 @@
#include "ace/Synch.h"
#include "JAWS/Cache_Manager.h"
+#include "JAWS/Cache_List_T.h"
ACE_String_Hash_Functor::ACE_String_Hash_Functor (const char *s)
: i_ (0)
@@ -106,14 +107,6 @@ template class ACE_Hash_Bucket_Manager<ACE_Strdup_String,
template class ACE_Cache_Hash<ACE_Strdup_String,
ACE_String_Hash_Functor,
ACE_String_Equal_Functor>;
-template class ACE_Cache_Heap_Item<ACE_Strdup_String,
- ACE_Referenced_Cache_Object_Factory,
- ACE_String_Hash_Functor,
- ACE_String_Equal_Functor>;
-template class ACE_Cache_Heap<ACE_Strdup_String,
- ACE_Referenced_Cache_Object_Factory,
- ACE_String_Hash_Functor,
- ACE_String_Equal_Functor>;
template class ACE_Cache_List_Item<ACE_Strdup_String,
ACE_Referenced_Cache_Object_Factory,
ACE_String_Hash_Functor,
@@ -126,14 +119,6 @@ template class ACE_Cache_Manager<ACE_Strdup_String,
ACE_Referenced_Cache_Object_Factory,
ACE_String_Hash_Functor,
ACE_String_Equal_Functor>;
-template class ACE_Cache_Heap_Item<ACE_Strdup_String,
- ACE_Counted_Cache_Object_Factory,
- ACE_String_Hash_Functor,
- ACE_String_Equal_Functor>;
-template class ACE_Cache_Heap<ACE_Strdup_String,
- ACE_Counted_Cache_Object_Factory,
- ACE_String_Hash_Functor,
- ACE_String_Equal_Functor>;
template class ACE_Cache_List_Item<ACE_Strdup_String,
ACE_Counted_Cache_Object_Factory,
ACE_String_Hash_Functor,
diff --git a/apps/JAWS/PROTOTYPE/JAWS/Cache_Manager_T.cpp b/apps/JAWS/PROTOTYPE/JAWS/Cache_Manager_T.cpp
index fb7c9bb55e9..9acc3d6bdd3 100644
--- a/apps/JAWS/PROTOTYPE/JAWS/Cache_Manager_T.cpp
+++ b/apps/JAWS/PROTOTYPE/JAWS/Cache_Manager_T.cpp
@@ -53,9 +53,9 @@ ACE_Cache_Manager<KEY,FACTORY,HASH_FUNC,EQ_FUNC>
this->factory_ = Object_Factory::instance ();
ACE_NEW_MALLOC (this->hash_,
- (ACE_CACHE_HASH *)
- this->allocator_->malloc (sizeof (ACE_CACHE_HASH)),
- ACE_CACHE_HASH (alloc, hashsize));
+ (Cache_Hash *)
+ this->allocator_->malloc (sizeof (Cache_Hash)),
+ Cache_Hash (alloc, hashsize));
if (this->hash_ == 0)
{