From 22cbef9c75aeb58d6c88c9b736526cb9d52a52a2 Mon Sep 17 00:00:00 2001 From: Adrian Kummerländer Date: Mon, 28 Apr 2014 20:03:06 +0200 Subject: Adapted read-directory tree construction to match the other functions * throwing std::out_of_range exception from DomDocumentCache::get instead of returning nullptr in case of a problem * moved xalanToString method back into FilesystemContext compilation unit as is only needed there --- src/support/filesystem_context.cc | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'src/support/filesystem_context.cc') diff --git a/src/support/filesystem_context.cc b/src/support/filesystem_context.cc index 34b8950..6ad682f 100644 --- a/src/support/filesystem_context.cc +++ b/src/support/filesystem_context.cc @@ -1,6 +1,18 @@ #include "filesystem_context.h" -#include "support/utility.h" +namespace { + +inline std::string xalanToString(const xalan::XalanDOMString& text) { + xalan::CharVectorType castHelper; + text.transcode(castHelper); + + return std::string( + castHelper.begin(), + castHelper.end() - 1 + ); +} + +} namespace InputXSLT { -- cgit v1.2.3