neilg       2003/11/25 06:20:22

  Modified:    c/src/xercesc/framework/psvi PSVIHandler.hpp
  Log:
  clean up usage of const in PSVIHandler
  
  Revision  Changes    Path
  1.4       +7 -4      xml-xerces/c/src/xercesc/framework/psvi/PSVIHandler.hpp
  
  Index: PSVIHandler.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/PSVIHandler.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PSVIHandler.hpp   17 Nov 2003 18:12:00 -0000      1.3
  +++ PSVIHandler.hpp   25 Nov 2003 14:20:21 -0000      1.4
  @@ -56,6 +56,9 @@
   
    /*
     * $Log$
  +  * Revision 1.4  2003/11/25 14:20:21  neilg
  +  * clean up usage of const in PSVIHandler
  +  *
     * Revision 1.3  2003/11/17 18:12:00  neilg
     * PSVIAttributeList needs to be included by PSVIHandler.  Thanks to Pete Lloyd 
for the patch
     *
  @@ -110,10 +113,10 @@
         */
       virtual void handleElementPSVI
       (
  -        const   XMLCh *                 localName 
  +        const   XMLCh* const            localName 
           , const XMLCh* const            uri
           , const XMLCh* const            prefix
  -        , const PSVIElement *           elementInfo
  +        ,       PSVIElement *           elementInfo
       ) = 0;
   
       /**
  @@ -130,10 +133,10 @@
         */
       virtual void handleAttributesPSVI
       (
  -        const   XMLCh *                 localName 
  +        const   XMLCh* const            localName 
           , const XMLCh* const            uri
           , const XMLCh* const            prefix
  -        , const PSVIAttributeList *     psviAttributes
  +        ,       PSVIAttributeList *     psviAttributes
       ) = 0;
   
   
  
  
  

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

Reply via email to