13 #include <libxslt/xslt.h> 14 #include <libxslt/xsltutils.h> 27 bool SetInput(
const std::string& input);
47 xmlDocPtr m_xmlInput =
nullptr;
48 xmlDocPtr m_xmlOutput =
nullptr;
49 xmlDocPtr m_xmlStylesheet =
nullptr;
50 xsltStylesheetPtr m_xsltStylesheet =
nullptr;
bool SetInput(const std::string &input)
Set the input XML for an XSLT transform from a string. This sets up the XSLT transformer with some in...
Definition: XSLTUtils.cpp:72
bool XSLTTransform(std::string &output)
Perform an XSLT transform on an inbound XML document. This will apply an XSLT transformation on an in...
Definition: XSLTUtils.cpp:46
bool SetStylesheet(const std::string &stylesheet)
Set the stylesheet (XSL) for an XSLT transform from a string. This sets up the XSLT transformer with ...
Definition: XSLTUtils.cpp:80
Definition: XSLTUtils.h:16