aboutsummaryrefslogtreecommitdiff
path: root/src/function/read_file.cc
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-07-08 14:06:47 +0200
committerAdrian Kummerlaender2014-07-08 14:06:47 +0200
commit716958c6acb77f4f63cc6f99d741fe0a901a25ba (patch)
tree00eab42295e3e719d59b3c29389931b95108d7e1 /src/function/read_file.cc
parent8f05c7de54336daefb214a754de35367098b6510 (diff)
downloadInputXSLT-716958c6acb77f4f63cc6f99d741fe0a901a25ba.tar
InputXSLT-716958c6acb77f4f63cc6f99d741fe0a901a25ba.tar.gz
InputXSLT-716958c6acb77f4f63cc6f99d741fe0a901a25ba.tar.bz2
InputXSLT-716958c6acb77f4f63cc6f99d741fe0a901a25ba.tar.lz
InputXSLT-716958c6acb77f4f63cc6f99d741fe0a901a25ba.tar.xz
InputXSLT-716958c6acb77f4f63cc6f99d741fe0a901a25ba.tar.zst
InputXSLT-716958c6acb77f4f63cc6f99d741fe0a901a25ba.zip
Added ResultNodeFacade constructor overload for root nodes
* the common use case of ResultNodeFacade inside external function implementations is managing the result root node ** this root node can be fetched through the xercesc::DOMDocument instance ** the new alias overload automatically fetches the root node pointer and as such doesn't require a root node parameter * changed external function implementations accordingly
Diffstat (limited to 'src/function/read_file.cc')
-rw-r--r--src/function/read_file.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/function/read_file.cc b/src/function/read_file.cc
index cb1e57f..dcd32b7 100644
--- a/src/function/read_file.cc
+++ b/src/function/read_file.cc
@@ -65,11 +65,7 @@ DomDocumentCache::document_ptr FunctionReadFile::constructDocument(
DomDocumentCache::createDocument()
);
- xercesc::DOMNode* const rootNode(
- domDocument->getDocumentElement()
- );
-
- ResultNodeFacade result(domDocument.get(), rootNode, "file");
+ ResultNodeFacade result(domDocument.get(), "file");
result.setAttribute("path", filePath.string());
if ( boost::filesystem::is_regular_file(filePath) ) {