summaryrefslogtreecommitdiff
path: root/examples/cxx/tree/embedded/grammar-input-stream.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cxx/tree/embedded/grammar-input-stream.cxx')
-rw-r--r--examples/cxx/tree/embedded/grammar-input-stream.cxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/examples/cxx/tree/embedded/grammar-input-stream.cxx b/examples/cxx/tree/embedded/grammar-input-stream.cxx
index 0c94ea6..270f1d9 100644
--- a/examples/cxx/tree/embedded/grammar-input-stream.cxx
+++ b/examples/cxx/tree/embedded/grammar-input-stream.cxx
@@ -16,27 +16,14 @@ grammar_input_stream (const XMLByte* data, std::size_t size)
{
}
-#if _XERCES_VERSION >= 30000
XMLFilePos grammar_input_stream::
curPos () const
{
return static_cast<XMLFilePos> (vpos_);
}
-#else
-unsigned int grammar_input_stream::
-curPos () const
-{
- return static_cast<unsigned int> (vpos_);
-}
-#endif
-#if _XERCES_VERSION >= 30000
XMLSize_t grammar_input_stream::
readBytes (XMLByte* const buf, const XMLSize_t size)
-#else
-unsigned int grammar_input_stream::
-readBytes (XMLByte* const buf, const unsigned int size)
-#endif
{
std::size_t i (0);
@@ -99,17 +86,11 @@ readBytes (XMLByte* const buf, const unsigned int size)
vpos_ += i;
-#if _XERCES_VERSION >= 30000
return static_cast<XMLSize_t> (i);
-#else
- return static_cast<unsigned int> (i);
-#endif
}
-#if _XERCES_VERSION >= 30000
const XMLCh* grammar_input_stream::
getContentType () const
{
return 0;
}
-#endif