diff options
Diffstat (limited to 'src/xerces-test.cpp')
-rw-r--r-- | src/xerces-test.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/xerces-test.cpp b/src/xerces-test.cpp new file mode 100644 index 0000000..feba8d3 --- /dev/null +++ b/src/xerces-test.cpp @@ -0,0 +1,24 @@ +/* This file is part of mingw-cross-env. */ +/* See doc/index.html for further information. */ + +#include <xercesc/parsers/SAXParser.hpp> + +XERCES_CPP_NAMESPACE_USE + +int main(int argc, char *argv[]) +{ + (void)argc; + (void)argv; + + XMLPlatformUtils::Initialize(); + { + SAXParser parser; + parser.setValidationScheme(SAXParser::Val_Always); + parser.setDoNamespaces(true); + parser.setDoSchema(true); + parser.setValidationSchemaFullChecking(false); + } + XMLPlatformUtils::Terminate(); + + return 0; +} |