summaryrefslogtreecommitdiff
path: root/apps/JAWS/PROTOTYPE
diff options
context:
space:
mode:
authorcdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-11-17 15:15:26 +0000
committercdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-11-17 15:15:26 +0000
commitf3de70dae67fe3614f049e6fa1374bbe789efe53 (patch)
tree917bdfda0efdaffe202890c1109c7dffa36a3718 /apps/JAWS/PROTOTYPE
parent3232b29dca6338c3a41f48b6f0d06c741663e2f4 (diff)
downloadATCD-f3de70dae67fe3614f049e6fa1374bbe789efe53.tar.gz
added >,< operators to string classes, added template instantiations for ACE_RB_Tree and related classes, added RB_Tree_Test to UNIX makefile, test script
Diffstat (limited to 'apps/JAWS/PROTOTYPE')
-rw-r--r--apps/JAWS/PROTOTYPE/HTTPU/http_headers.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/JAWS/PROTOTYPE/HTTPU/http_headers.cpp b/apps/JAWS/PROTOTYPE/HTTPU/http_headers.cpp
index 31e6fb6658e..6b5d3ebdcb6 100644
--- a/apps/JAWS/PROTOTYPE/HTTPU/http_headers.cpp
+++ b/apps/JAWS/PROTOTYPE/HTTPU/http_headers.cpp
@@ -130,11 +130,15 @@ HTTP_Headers::value_reset (void)
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
+template class ACE_Const_Binary_Functor_Base<int, int>;
+template class ACE_Less_Than_Functor<int, int>;
template class ACE_RB_Tree<int, const HTTP_Hdr_Node *>;
template class ACE_RB_Tree_Node<int, const HTTP_Hdr_Node *>;
template class ACE_RB_Tree_Iterator<int, const HTTP_Hdr_Node *>;
template class ACE_Singleton<HTTP_Header_Nodes, ACE_SYNCH_MUTEX>;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
+#pragma instantiate ACE_Const_Binary_Functor_Base<int, int>
+#pragma instantiate ACE_Less_Than_Functor<int, int>
#pragma instantiate ACE_RB_Tree<int, const HTTP_Hdr_Node *>
#pragma instantiate ACE_RB_Tree_Node<int, const HTTP_Hdr_Node *>
#pragma instantiate ACE_RB_Tree_Iterator<int, const HTTP_Hdr_Node *>