gareth 2003/10/20 04:45:06 Modified: c/src/xercesc/util RefHash2KeysTableOf.hpp RefHashTableOf.hpp Log: Made enumerators inherit from XMemory. Revision Changes Path 1.7 +4 -1 xml-xerces/c/src/xercesc/util/RefHash2KeysTableOf.hpp Index: RefHash2KeysTableOf.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/RefHash2KeysTableOf.hpp,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- RefHash2KeysTableOf.hpp 17 Oct 2003 21:10:40 -0000 1.6 +++ RefHash2KeysTableOf.hpp 20 Oct 2003 11:45:06 -0000 1.7 @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.7 2003/10/20 11:45:06 gareth + * Made enumerators inherit from XMemory. + * * Revision 1.6 2003/10/17 21:10:40 peiyongz * nextElementKey() added * @@ -239,7 +242,7 @@ // An enumerator for a value array. It derives from the basic enumerator // class, so that value vectors can be generically enumerated. // -template <class TVal> class RefHash2KeysTableOfEnumerator : public XMLEnumerator<TVal> +template <class TVal> class RefHash2KeysTableOfEnumerator : public XMLEnumerator<TVal>, public XMemory { public : // ----------------------------------------------------------------------- 1.11 +5 -1 xml-xerces/c/src/xercesc/util/RefHashTableOf.hpp Index: RefHashTableOf.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/RefHashTableOf.hpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- RefHashTableOf.hpp 18 May 2003 14:02:05 -0000 1.10 +++ RefHashTableOf.hpp 20 Oct 2003 11:45:06 -0000 1.11 @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.11 2003/10/20 11:45:06 gareth + * Made enumerators inherit from XMemory. + * * Revision 1.10 2003/05/18 14:02:05 knoaman * Memory manager implementation: pass per instance manager. * @@ -283,7 +286,7 @@ // An enumerator for a value array. It derives from the basic enumerator // class, so that value vectors can be generically enumerated. // -template <class TVal> class RefHashTableOfEnumerator : public XMLEnumerator<TVal> +template <class TVal> class RefHashTableOfEnumerator : public XMLEnumerator<TVal>, public XMemory { public : // ----------------------------------------------------------------------- @@ -343,3 +346,4 @@ #endif #endif +
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]