aboutsummaryrefslogtreecommitdiff
path: root/src/transformer_facade.cc
diff options
context:
space:
mode:
authorAdrian Kummerländer2014-04-22 22:49:56 +0200
committerAdrian Kummerländer2014-04-22 22:49:56 +0200
commit34b2f97ac57489d7c9555a3cb0c92c808a4948ea (patch)
treee54b367a4e4d5204c47b1478d1a0253cf42c2f25 /src/transformer_facade.cc
parent7142544d43b431df44d34921b0f3012fa1e0137d (diff)
downloadInputXSLT-34b2f97ac57489d7c9555a3cb0c92c808a4948ea.tar
InputXSLT-34b2f97ac57489d7c9555a3cb0c92c808a4948ea.tar.gz
InputXSLT-34b2f97ac57489d7c9555a3cb0c92c808a4948ea.tar.bz2
InputXSLT-34b2f97ac57489d7c9555a3cb0c92c808a4948ea.tar.lz
InputXSLT-34b2f97ac57489d7c9555a3cb0c92c808a4948ea.tar.xz
InputXSLT-34b2f97ac57489d7c9555a3cb0c92c808a4948ea.tar.zst
InputXSLT-34b2f97ac57489d7c9555a3cb0c92c808a4948ea.zip
Implemented basic XML output of external read-directory function
* output is generated from XML hand-generated in a std::stringstream ** while this works reasonably well it is not how it should by done, i.e. this will have to be reimplemented using xerces / xalan constructs ** => this is intended to try out how a read-directory could work in a XSLT context
Diffstat (limited to 'src/transformer_facade.cc')
-rw-r--r--src/transformer_facade.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/transformer_facade.cc b/src/transformer_facade.cc
index 055b1f3..01314cd 100644
--- a/src/transformer_facade.cc
+++ b/src/transformer_facade.cc
@@ -1,12 +1,9 @@
#include "transformer_facade.h"
-#include <xalanc/Include/PlatformDefinitions.hpp>
-#include <xercesc/util/PlatformUtils.hpp>
-
#include <xalanc/XSLT/XSLTInputSource.hpp>
#include <xalanc/XalanTransformer/XalanTransformer.hpp>
-#include <xalanc/XalanTransformer/XercesDOMWrapperParsedSource.hpp>
#include <xalanc/XercesParserLiaison/XercesDOMSupport.hpp>
+#include <xalanc/XalanTransformer/XercesDOMWrapperParsedSource.hpp>
#include <xercesc/dom/DOMDocument.hpp>
#include <xercesc/dom/DOMImplementation.hpp>
@@ -59,8 +56,7 @@ int TransformerFacade::execute(
xalan::XercesDOMWrapperParsedSource parsedInput(
inputDom,
this->parser_,
- domSupport,
- xalan::XalanDOMString("")
+ domSupport
);
xalan::XSLTInputSource transform(transformation.data());