dbertoni    2005/04/22 09:12:48

  Modified:    c/src/xercesc/util RefHashTableOf.c RefHashTableOf.hpp
  Log:
  Patch for Jira issue XERCESC-1410.
  
  Revision  Changes    Path
  1.22      +9 -0      xml-xerces/c/src/xercesc/util/RefHashTableOf.c
  
  Index: RefHashTableOf.c
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/RefHashTableOf.c,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- RefHashTableOf.c  25 Feb 2005 09:16:51 -0000      1.21
  +++ RefHashTableOf.c  22 Apr 2005 16:12:48 -0000      1.22
  @@ -16,6 +16,9 @@
   
   /**
    * $Log$
  + * Revision 1.22  2005/04/22 16:12:48  dbertoni
  + * Patch for Jira issue XERCESC-1410.
  + *
    * Revision 1.21  2005/02/25 09:16:51  gareth
    * Fix thread safety issues. Jira #30380. Thanks to David Bertoni.
    *
  @@ -464,6 +467,12 @@
       return fHashModulus;
   }
   
  +template <class TVal>
  +unsigned int RefHashTableOf<TVal>::getCount() const
  +{
  +    return fCount;
  +}
  +
   // 
---------------------------------------------------------------------------
   //  RefHashTableOf: Getters
   // 
---------------------------------------------------------------------------
  
  
  
  1.18      +4 -0      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.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- RefHashTableOf.hpp        8 Feb 2005 09:21:11 -0000       1.17
  +++ RefHashTableOf.hpp        22 Apr 2005 16:12:48 -0000      1.18
  @@ -16,6 +16,9 @@
   
   /*
    * $Log$
  + * Revision 1.18  2005/04/22 16:12:48  dbertoni
  + * Patch for Jira issue XERCESC-1410.
  + *
    * Revision 1.17  2005/02/08 09:21:11  amassari
    * Removed warnings
    *
  @@ -210,6 +213,7 @@
       const TVal* get(const void* const key) const;
       MemoryManager* getMemoryManager() const;   
       unsigned int   getHashModulus()   const;
  +    unsigned int   getCount() const;
   
       // 
-----------------------------------------------------------------------
       //  Setters
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to