Skip to content
Snippets Groups Projects
Commit be4aa3dd authored by PeiYong Zhang's avatar PeiYong Zhang
Browse files

make resolveSystemId virutal

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@175858 13f79535-47bb-0310-9956-ffa450edef68
parent 2b485057
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.13 2004/04/07 14:14:08 peiyongz
* make resolveSystemId virutal
*
* Revision 1.12 2004/01/29 11:46:30 cargilld * Revision 1.12 2004/01/29 11:46:30 cargilld
* Code cleanup changes to get rid of various compiler diagnostic messages. * Code cleanup changes to get rid of various compiler diagnostic messages.
* *
...@@ -184,13 +187,14 @@ private : ...@@ -184,13 +187,14 @@ private :
virtual void scanDocTypeDecl(); virtual void scanDocTypeDecl();
virtual void scanReset(const InputSource& src); virtual void scanReset(const InputSource& src);
virtual void sendCharData(XMLBuffer& toSend); virtual void sendCharData(XMLBuffer& toSend);
virtual InputSource* resolveSystemId(const XMLCh* const sysId);
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
// Private helper methods // Private helper methods
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
void commonInit(); void commonInit();
void cleanUp(); void cleanUp();
InputSource* resolveSystemId(const XMLCh* const sysId); // return owned by caller
unsigned int buildAttList unsigned int buildAttList
( (
const unsigned int attCount const unsigned int attCount
......
...@@ -56,6 +56,9 @@ ...@@ -56,6 +56,9 @@
/* /*
* $Log$ * $Log$
* Revision 1.19 2004/04/07 14:14:08 peiyongz
* make resolveSystemId virutal
*
* Revision 1.18 2004/01/29 11:46:30 cargilld * Revision 1.18 2004/01/29 11:46:30 cargilld
* Code cleanup changes to get rid of various compiler diagnostic messages. * Code cleanup changes to get rid of various compiler diagnostic messages.
* *
...@@ -217,13 +220,13 @@ private : ...@@ -217,13 +220,13 @@ private :
virtual void scanDocTypeDecl(); virtual void scanDocTypeDecl();
virtual void scanReset(const InputSource& src); virtual void scanReset(const InputSource& src);
virtual void sendCharData(XMLBuffer& toSend); virtual void sendCharData(XMLBuffer& toSend);
virtual InputSource* resolveSystemId(const XMLCh* const sysId);
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
// Private helper methods // Private helper methods
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
void commonInit(); void commonInit();
void cleanUp(); void cleanUp();
InputSource* resolveSystemId(const XMLCh* const sysId); // return owned by caller
// Spaces are not allowed in URI, so %20 is used instead. // Spaces are not allowed in URI, so %20 is used instead.
// Convert %20 to spaces before resolving the URI // Convert %20 to spaces before resolving the URI
......
...@@ -56,6 +56,9 @@ ...@@ -56,6 +56,9 @@
/* /*
* $Log$ * $Log$
* Revision 1.17 2004/04/07 14:14:08 peiyongz
* make resolveSystemId virutal
*
* Revision 1.16 2004/01/29 11:46:30 cargilld * Revision 1.16 2004/01/29 11:46:30 cargilld
* Code cleanup changes to get rid of various compiler diagnostic messages. * Code cleanup changes to get rid of various compiler diagnostic messages.
* *
...@@ -207,13 +210,13 @@ private : ...@@ -207,13 +210,13 @@ private :
virtual void scanDocTypeDecl(); virtual void scanDocTypeDecl();
virtual void scanReset(const InputSource& src); virtual void scanReset(const InputSource& src);
virtual void sendCharData(XMLBuffer& toSend); virtual void sendCharData(XMLBuffer& toSend);
virtual InputSource* resolveSystemId(const XMLCh* const sysId);
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
// Private helper methods // Private helper methods
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
void commonInit(); void commonInit();
void cleanUp(); void cleanUp();
InputSource* resolveSystemId(const XMLCh* const sysId); // return owned by caller
// Spaces are not allowed in URI, so %20 is used instead. // Spaces are not allowed in URI, so %20 is used instead.
// Convert %20 to spaces before resolving the URI // Convert %20 to spaces before resolving the URI
......
...@@ -56,6 +56,9 @@ ...@@ -56,6 +56,9 @@
/* /*
* $Log$ * $Log$
* Revision 1.10 2004/04/07 14:14:08 peiyongz
* make resolveSystemId virutal
*
* Revision 1.9 2004/01/29 11:46:30 cargilld * Revision 1.9 2004/01/29 11:46:30 cargilld
* Code cleanup changes to get rid of various compiler diagnostic messages. * Code cleanup changes to get rid of various compiler diagnostic messages.
* *
...@@ -172,6 +175,7 @@ private : ...@@ -172,6 +175,7 @@ private :
virtual void scanDocTypeDecl(); virtual void scanDocTypeDecl();
virtual void scanReset(const InputSource& src); virtual void scanReset(const InputSource& src);
virtual void sendCharData(XMLBuffer& toSend); virtual void sendCharData(XMLBuffer& toSend);
virtual InputSource* resolveSystemId(const XMLCh* const sysId);
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
// Private helper methods // Private helper methods
......
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