Skip to content
Snippets Groups Projects
Commit ac2527a8 authored by James David Berry's avatar James David Berry
Browse files

Add pure virtual getErrorCount to SAX2XMLReader interface.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@172715 13f79535-47bb-0310-9956-ffa450edef68
parent e90cc51d
No related branches found
No related tags found
No related merge requests found
...@@ -56,6 +56,9 @@ ...@@ -56,6 +56,9 @@
/* /*
* $Log$ * $Log$
* Revision 1.8 2001/06/04 21:03:07 jberry
* Add pure virtual getErrorCount to SAX2XMLReader interface.
*
* Revision 1.7 2001/05/11 13:26:25 tng * Revision 1.7 2001/05/11 13:26:25 tng
* Copyright update. * Copyright update.
* *
...@@ -140,6 +143,18 @@ public: ...@@ -140,6 +143,18 @@ public:
/** @name The XMLReader interfaces */ /** @name The XMLReader interfaces */
//@{ //@{
/** Get error count from the last parse operation.
*
* This method returns the error count from the last parse
* operation. Note that this count is actually stored in the
* scanner, so this method simply returns what the
* scanner reports.
*
* @return number of errors encountered during the latest
* parse operation.
*/
virtual int getErrorCount() const = 0 ;
/** /**
* This method returns the installed content handler. * This method returns the installed content handler.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment