From 60f34cf123e49ab1e9898f8e5fc0d33aef657a33 Mon Sep 17 00:00:00 2001
From: Neil Graham <neilg@apache.org>
Date: Tue, 3 Jun 2003 14:00:35 +0000
Subject: [PATCH] attempt to make VC6 happy.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@175071 13f79535-47bb-0310-9956-ffa450edef68
---
 tests/MemHandlerTest/MemoryMonitor.cpp          | 5 ++++-
 tests/MemHandlerTest/MemoryMonitor.hpp          | 2 +-
 tests/MemHandlerTest/SimpleHashPtr.cpp          | 2 +-
 tests/MemHandlerTest/SimpleValueHashTableOf.cpp | 5 ++++-
 tests/MemHandlerTest/SimpleValueHashTableOf.hpp | 4 ++--
 5 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/tests/MemHandlerTest/MemoryMonitor.cpp b/tests/MemHandlerTest/MemoryMonitor.cpp
index 7bbe83d2c..24f9e8311 100755
--- a/tests/MemHandlerTest/MemoryMonitor.cpp
+++ b/tests/MemHandlerTest/MemoryMonitor.cpp
@@ -56,6 +56,9 @@
 
 /*
  * $Log$
+ * Revision 1.3  2003/06/03 14:00:34  neilg
+ * attempt to make VC6 happy.
+ *
  * Revision 1.2  2003/06/03 13:50:44  neilg
  * make Forte compiler happy
  *
@@ -68,7 +71,7 @@
 // ---------------------------------------------------------------------------
 //  Includes
 // ---------------------------------------------------------------------------
-#include <MemoryMonitor.hpp>
+#include "MemoryMonitor.hpp"
 #if defined(XERCES_NEW_IOSTREAMS)
 #include <iostream>
 #include <fstream>
diff --git a/tests/MemHandlerTest/MemoryMonitor.hpp b/tests/MemHandlerTest/MemoryMonitor.hpp
index 67c190696..39779d41c 100755
--- a/tests/MemHandlerTest/MemoryMonitor.hpp
+++ b/tests/MemHandlerTest/MemoryMonitor.hpp
@@ -61,7 +61,7 @@
 
 #include <xercesc/framework/MemoryManager.hpp>
 #include <xercesc/util/PlatformUtils.hpp>
-#include <SimpleHashPtr.hpp>
+#include "SimpleHashPtr.hpp"
 #include <xercesc/dom/DOMBuilder.hpp>
 #include <xercesc/dom/DOMErrorHandler.hpp>
 #include <xercesc/dom/DOMError.hpp>
diff --git a/tests/MemHandlerTest/SimpleHashPtr.cpp b/tests/MemHandlerTest/SimpleHashPtr.cpp
index 8b00adf1b..90f4e864a 100644
--- a/tests/MemHandlerTest/SimpleHashPtr.cpp
+++ b/tests/MemHandlerTest/SimpleHashPtr.cpp
@@ -54,7 +54,7 @@
  * <http://www.apache.org/>.
  */
 
-#include <SimpleHashPtr.hpp>
+#include "SimpleHashPtr.hpp"
 
 // this is just a copy of HashPtr which is careful to rely on global new.
 
diff --git a/tests/MemHandlerTest/SimpleValueHashTableOf.cpp b/tests/MemHandlerTest/SimpleValueHashTableOf.cpp
index 214a8a8b7..29c2f5793 100644
--- a/tests/MemHandlerTest/SimpleValueHashTableOf.cpp
+++ b/tests/MemHandlerTest/SimpleValueHashTableOf.cpp
@@ -56,13 +56,16 @@
 
 /**
  * $Log$
+ * Revision 1.2  2003/06/03 14:00:34  neilg
+ * attempt to make VC6 happy.
+ *
  * Revision 1.1  2003/06/02 22:22:26  neilg
  * new test for the pluggable memory management mechanism.  This tests all 4 common Xerces parsers (SAX, SAX2, DOMBuilder and DeprecatedDOM) and ensures all allocated memory is dallocated, and that the manager which created the memory is called to deallocate it.
  *
  */
 
 #if defined(XERCES_TMPLSINC)
-#include <SimpleValueHashTableOf.hpp>
+#include "SimpleValueHashTableOf.hpp"
 #endif
 
 // ---------------------------------------------------------------------------
diff --git a/tests/MemHandlerTest/SimpleValueHashTableOf.hpp b/tests/MemHandlerTest/SimpleValueHashTableOf.hpp
index c7443b51f..ba59a01a5 100644
--- a/tests/MemHandlerTest/SimpleValueHashTableOf.hpp
+++ b/tests/MemHandlerTest/SimpleValueHashTableOf.hpp
@@ -61,7 +61,7 @@
 
 
 #include <xercesc/util/XercesDefs.hpp>
-#include <SimpleHashPtr.hpp>
+#include "SimpleHashPtr.hpp"
 #include <xercesc/util/IllegalArgumentException.hpp>
 #include <xercesc/util/NoSuchElementException.hpp>
 #include <xercesc/util/RuntimeException.hpp>
@@ -226,5 +226,5 @@ private :
 };
 
 #if !defined(XERCES_TMPLSINC)
-#include <SimpleValueHashTableOf.cpp>
+#include "SimpleValueHashTableOf.cpp"
 #endif
-- 
GitLab