aboutsummaryrefslogtreecommitdiff
path: root/src/support/dom/document_cache.h
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-07-09 19:59:32 +0200
committerAdrian Kummerlaender2014-07-09 19:59:32 +0200
commit1fbf6a39784b57925ab19df579f487a338e22ba5 (patch)
treee3e6a9aaa9cf54cc5e294d7f03a02b450d30a5b8 /src/support/dom/document_cache.h
parentfcc2f8ee41d6793411a2321e6b0ac46cb5ba23ee (diff)
downloadInputXSLT-1fbf6a39784b57925ab19df579f487a338e22ba5.tar
InputXSLT-1fbf6a39784b57925ab19df579f487a338e22ba5.tar.gz
InputXSLT-1fbf6a39784b57925ab19df579f487a338e22ba5.tar.bz2
InputXSLT-1fbf6a39784b57925ab19df579f487a338e22ba5.tar.lz
InputXSLT-1fbf6a39784b57925ab19df579f487a338e22ba5.tar.xz
InputXSLT-1fbf6a39784b57925ab19df579f487a338e22ba5.tar.zst
InputXSLT-1fbf6a39784b57925ab19df579f487a338e22ba5.zip
Added DomDocumentCache::createDocument overload enabling document naming
* previous createDocument method used default name "content" ** this led to problems when using xalan::XalanNode as transformation input ** the parameter-less createDocument overload now creates a unnamed xercesc::DOMDocument * changed external function implementations accordingly
Diffstat (limited to 'src/support/dom/document_cache.h')
-rw-r--r--src/support/dom/document_cache.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/support/dom/document_cache.h b/src/support/dom/document_cache.h
index 3aeb332..f472249 100644
--- a/src/support/dom/document_cache.h
+++ b/src/support/dom/document_cache.h
@@ -27,6 +27,7 @@ class DomDocumentCache {
> document_ptr;
static document_ptr createDocument();
+ static document_ptr createDocument(const std::string&);
DomDocumentCache();