diff --git a/tests/MemHandlerTest/MemoryMonitor.cpp b/tests/MemHandlerTest/MemoryMonitor.cpp index 7bbe83d2c29981f6d4cecc924c29444b27a77fe3..24f9e8311d6030783438147818a3d1e791a1f645 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 67c190696a79a277311ce892d272c5268e12d607..39779d41cb402c21f46623c17fb02bb40e04c4fc 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 8b00adf1be8e6a07f70f976a4310d7a0e0cc334d..90f4e864abf4d95761860a93e80fa413dde4934d 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 214a8a8b743ca70ccadc6748b76b24ec7d824cbb..29c2f579303c619d34a8d8d51c2840901fbf485e 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 c7443b51f40c897ac6a8b879dd27c235fa332b9c..ba59a01a503871c3511befb0ddd1bd36e3c51363 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