12345678910111213141516171819202122232425262728293031323334353637 |
- #include "jexcept.hpp"
- #include "xslprocessor.hpp"
- #include "xmlvalidator.hpp"
- #include "xmlerror.hpp"
- #include "xpathprocessor.hpp"
- XMLLIB_API IXmlDomParser* getXmlDomParser()
- {
- throw MakeStringException(XMLERR_MissingDependency, "XML validation library unavailable");
- }
- extern IXslProcessor* getXslProcessor()
- {
- throw MakeStringException(XMLERR_MissingDependency, "XSLT library unavailable");
- }
- extern ICompiledXpath* getCompiledXpath(const char * xpath)
- {
- throw MakeStringException(XMLERR_MissingDependency, "XSLT library unavailable");
- }
- extern IXpathContext* getXpathContext(const char * xmldoc)
- {
- throw MakeStringException(XMLERR_MissingDependency, "XSLT library unavailable");
- }
- extern ICompiledXpath* compileXpath(const char * xpath)
- {
- UNIMPLEMENTED;
- }
- IEsdlScriptContext *createEsdlScriptContext(void * espCtx)
- {
- UNIMPLEMENTED;
- }
|