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

net getter

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@176158 13f79535-47bb-0310-9956-ffa450edef68
parent 92da1330
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,9 @@
/*
* $Log$
* Revision 1.6 2004/10/26 14:50:49 peiyongz
* net getter
*
* Revision 1.5 2004/09/08 13:56:21 peiyongz
* Apache License Version 2.0
*
......@@ -90,6 +93,9 @@ public :
// Implementation of the input stream interface
// -----------------------------------------------------------------------
virtual unsigned int curPos() const;
unsigned int getSize() const;
virtual unsigned int readBytes
(
XMLByte* const toFill
......@@ -146,6 +152,11 @@ inline unsigned int BinMemInputStream::curPos() const
return fCurIndex;
}
inline unsigned int BinMemInputStream::getSize() const
{
return fCapacity;
}
XERCES_CPP_NAMESPACE_END
#endif
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