amassari    2004/02/15 11:43:15

  Modified:    c/samples/PParse PParseHandlers.hpp
               c/samples/PSVIWriter PSVIWriterHandlers.hpp
               c/samples/Redirect RedirectHandlers.hpp
               c/samples/SAX2Count SAX2CountHandlers.hpp
               c/samples/SAX2Print SAX2PrintHandlers.hpp
               c/samples/SAXCount SAXCountHandlers.hpp
               c/samples/SAXPrint SAXPrintHandlers.hpp
               c/samples/StdInParse StdInParseHandlers.hpp
  Log:
  Removed cause for warnings in VC 7.1
  
  Revision  Changes    Path
  1.7       +6 -3      xml-xerces/c/samples/PParse/PParseHandlers.hpp
  
  Index: PParseHandlers.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/samples/PParse/PParseHandlers.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- PParseHandlers.hpp        5 Nov 2002 21:46:19 -0000       1.6
  +++ PParseHandlers.hpp        15 Feb 2004 19:43:15 -0000      1.7
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.7  2004/02/15 19:43:15  amassari
  + * Removed cause for warnings in VC 7.1
  + *
    * Revision 1.6  2002/11/05 21:46:19  tng
    * Explicit code using namespace in application.
    *
  @@ -138,9 +141,9 @@
       // -----------------------------------------------------------------------
       //  Implementations of the SAX ErrorHandler interface
       // -----------------------------------------------------------------------
  -    void warning(const SAXParseException& exception);
  -    void error(const SAXParseException& exception);
  -    void fatalError(const SAXParseException& exception);
  +    void warning(const SAXParseException& exc);
  +    void error(const SAXParseException& exc);
  +    void fatalError(const SAXParseException& exc);
   
   
       private:
  
  
  
  1.2       +0 -1      xml-xerces/c/samples/PSVIWriter/PSVIWriterHandlers.hpp
  
  Index: PSVIWriterHandlers.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/samples/PSVIWriter/PSVIWriterHandlers.hpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PSVIWriterHandlers.hpp    4 Feb 2004 20:11:55 -0000       1.1
  +++ PSVIWriterHandlers.hpp    15 Feb 2004 19:43:15 -0000      1.2
  @@ -96,7 +96,6 @@
   #include <xercesc/util/XMLResourceIdentifier.hpp>
   #include <stdlib.h>
   #include <string.h>
  -#include <iostream.h>
   
   XERCES_CPP_NAMESPACE_USE
   
  
  
  
  1.7       +6 -3      xml-xerces/c/samples/Redirect/RedirectHandlers.hpp
  
  Index: RedirectHandlers.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/samples/Redirect/RedirectHandlers.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- RedirectHandlers.hpp      5 Nov 2002 21:46:19 -0000       1.6
  +++ RedirectHandlers.hpp      15 Feb 2004 19:43:15 -0000      1.7
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.7  2004/02/15 19:43:15  amassari
  + * Removed cause for warnings in VC 7.1
  + *
    * Revision 1.6  2002/11/05 21:46:19  tng
    * Explicit code using namespace in application.
    *
  @@ -140,9 +143,9 @@
       // -----------------------------------------------------------------------
       //  Handlers for the SAX ErrorHandler interface
       // -----------------------------------------------------------------------
  -    void warning(const SAXParseException& exception);
  -    void error(const SAXParseException& exception);
  -    void fatalError(const SAXParseException& exception);
  +    void warning(const SAXParseException& exc);
  +    void error(const SAXParseException& exc);
  +    void fatalError(const SAXParseException& exc);
   
   
       // -----------------------------------------------------------------------
  
  
  
  1.6       +6 -3      xml-xerces/c/samples/SAX2Count/SAX2CountHandlers.hpp
  
  Index: SAX2CountHandlers.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/samples/SAX2Count/SAX2CountHandlers.hpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SAX2CountHandlers.hpp     5 Nov 2002 21:46:20 -0000       1.5
  +++ SAX2CountHandlers.hpp     15 Feb 2004 19:43:15 -0000      1.6
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.6  2004/02/15 19:43:15  amassari
  + * Removed cause for warnings in VC 7.1
  + *
    * Revision 1.5  2002/11/05 21:46:20  tng
    * Explicit code using namespace in application.
    *
  @@ -134,9 +137,9 @@
       // -----------------------------------------------------------------------
       //  Handlers for the SAX ErrorHandler interface
       // -----------------------------------------------------------------------
  -     void warning(const SAXParseException& exception);
  -    void error(const SAXParseException& exception);
  -    void fatalError(const SAXParseException& exception);
  +     void warning(const SAXParseException& exc);
  +    void error(const SAXParseException& exc);
  +    void fatalError(const SAXParseException& exc);
       void resetErrors();
   
   
  
  
  
  1.6       +6 -3      xml-xerces/c/samples/SAX2Print/SAX2PrintHandlers.hpp
  
  Index: SAX2PrintHandlers.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/samples/SAX2Print/SAX2PrintHandlers.hpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SAX2PrintHandlers.hpp     5 Nov 2002 21:46:20 -0000       1.5
  +++ SAX2PrintHandlers.hpp     15 Feb 2004 19:43:15 -0000      1.6
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.6  2004/02/15 19:43:15  amassari
  + * Removed cause for warnings in VC 7.1
  + *
    * Revision 1.5  2002/11/05 21:46:20  tng
    * Explicit code using namespace in application.
    *
  @@ -146,9 +149,9 @@
       // -----------------------------------------------------------------------
       //  Implementations of the SAX ErrorHandler interface
       // -----------------------------------------------------------------------
  -    void warning(const SAXParseException& exception);
  -    void error(const SAXParseException& exception);
  -    void fatalError(const SAXParseException& exception);
  +    void warning(const SAXParseException& exc);
  +    void error(const SAXParseException& exc);
  +    void fatalError(const SAXParseException& exc);
   
   
   
  
  
  
  1.8       +6 -3      xml-xerces/c/samples/SAXCount/SAXCountHandlers.hpp
  
  Index: SAXCountHandlers.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/samples/SAXCount/SAXCountHandlers.hpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- SAXCountHandlers.hpp      5 Nov 2002 21:46:20 -0000       1.7
  +++ SAXCountHandlers.hpp      15 Feb 2004 19:43:15 -0000      1.8
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.8  2004/02/15 19:43:15  amassari
  + * Removed cause for warnings in VC 7.1
  + *
    * Revision 1.7  2002/11/05 21:46:20  tng
    * Explicit code using namespace in application.
    *
  @@ -147,9 +150,9 @@
       // -----------------------------------------------------------------------
       //  Handlers for the SAX ErrorHandler interface
       // -----------------------------------------------------------------------
  -     void warning(const SAXParseException& exception);
  -    void error(const SAXParseException& exception);
  -    void fatalError(const SAXParseException& exception);
  +     void warning(const SAXParseException& exc);
  +    void error(const SAXParseException& exc);
  +    void fatalError(const SAXParseException& exc);
       void resetErrors();
   
   
  
  
  
  1.10      +6 -3      xml-xerces/c/samples/SAXPrint/SAXPrintHandlers.hpp
  
  Index: SAXPrintHandlers.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/samples/SAXPrint/SAXPrintHandlers.hpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- SAXPrintHandlers.hpp      5 Nov 2002 21:46:20 -0000       1.9
  +++ SAXPrintHandlers.hpp      15 Feb 2004 19:43:15 -0000      1.10
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.10  2004/02/15 19:43:15  amassari
  + * Removed cause for warnings in VC 7.1
  + *
    * Revision 1.9  2002/11/05 21:46:20  tng
    * Explicit code using namespace in application.
    *
  @@ -160,9 +163,9 @@
       // -----------------------------------------------------------------------
       //  Implementations of the SAX ErrorHandler interface
       // -----------------------------------------------------------------------
  -    void warning(const SAXParseException& exception);
  -    void error(const SAXParseException& exception);
  -    void fatalError(const SAXParseException& exception);
  +    void warning(const SAXParseException& exc);
  +    void error(const SAXParseException& exc);
  +    void fatalError(const SAXParseException& exc);
   
   
   
  
  
  
  1.7       +6 -3      xml-xerces/c/samples/StdInParse/StdInParseHandlers.hpp
  
  Index: StdInParseHandlers.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/samples/StdInParse/StdInParseHandlers.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- StdInParseHandlers.hpp    5 Nov 2002 21:46:20 -0000       1.6
  +++ StdInParseHandlers.hpp    15 Feb 2004 19:43:15 -0000      1.7
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.7  2004/02/15 19:43:15  amassari
  + * Removed cause for warnings in VC 7.1
  + *
    * Revision 1.6  2002/11/05 21:46:20  tng
    * Explicit code using namespace in application.
    *
  @@ -140,9 +143,9 @@
       // -----------------------------------------------------------------------
       //  Handlers for the SAX ErrorHandler interface
       // -----------------------------------------------------------------------
  -     void warning(const SAXParseException& exception);
  -    void error(const SAXParseException& exception);
  -    void fatalError(const SAXParseException& exception);
  +     void warning(const SAXParseException& exc);
  +    void error(const SAXParseException& exc);
  +    void fatalError(const SAXParseException& exc);
   
   
   private:
  
  
  

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

Reply via email to