xmllib_unsupported.cpp 870 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #include "jexcept.hpp"
  2. #include "xslprocessor.hpp"
  3. #include "xmlvalidator.hpp"
  4. #include "xmlerror.hpp"
  5. #include "xpathprocessor.hpp"
  6. XMLLIB_API IXmlDomParser* getXmlDomParser()
  7. {
  8. throw MakeStringException(XMLERR_MissingDependency, "XML validation library unavailable");
  9. }
  10. extern IXslProcessor* getXslProcessor()
  11. {
  12. throw MakeStringException(XMLERR_MissingDependency, "XSLT library unavailable");
  13. }
  14. extern ICompiledXpath* getCompiledXpath(const char * xpath)
  15. {
  16. throw MakeStringException(XMLERR_MissingDependency, "XSLT library unavailable");
  17. }
  18. extern IXpathContext* getXpathContext(const char * xmldoc)
  19. {
  20. throw MakeStringException(XMLERR_MissingDependency, "XSLT library unavailable");
  21. }
  22. extern ICompiledXpath* compileXpath(const char * xpath)
  23. {
  24. UNIMPLEMENTED;
  25. }
  26. IEsdlScriptContext *createEsdlScriptContext(void * espCtx)
  27. {
  28. UNIMPLEMENTED;
  29. }