aboutsummaryrefslogtreecommitdiff
path: root/src/support
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/support
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/support')
-rw-r--r--src/support/dom/result_node_facade.cc14
-rw-r--r--src/support/dom/result_node_facade.h2
2 files changed, 14 insertions, 2 deletions
diff --git a/src/support/dom/result_node_facade.cc b/src/support/dom/result_node_facade.cc
index 570b4e1..c5829c5 100644
--- a/src/support/dom/result_node_facade.cc
+++ b/src/support/dom/result_node_facade.cc
@@ -9,8 +9,18 @@ namespace InputXSLT {
ResultNodeFacade::ResultNodeFacade(
xercesc::DOMDocument* document,
- xercesc::DOMNode* node,
- const std::string& name
+ const std::string& name
+):
+ ResultNodeFacade(
+ document,
+ document->getDocumentElement(),
+ name
+ ) { }
+
+ResultNodeFacade::ResultNodeFacade(
+ xercesc::DOMDocument* document,
+ xercesc::DOMNode* node,
+ const std::string& name
):
dom_document_(document),
result_node_(
diff --git a/src/support/dom/result_node_facade.h b/src/support/dom/result_node_facade.h
index c7e831e..c743f92 100644
--- a/src/support/dom/result_node_facade.h
+++ b/src/support/dom/result_node_facade.h
@@ -11,11 +11,13 @@ namespace InputXSLT {
class ResultNodeFacade {
public:
+ ResultNodeFacade(xercesc::DOMDocument*, const std::string&);
ResultNodeFacade(
xercesc::DOMDocument*,
xercesc::DOMNode*,
const std::string&
);
+
~ResultNodeFacade();
xercesc::DOMElement* getResultElement();