From 5fbca0993146982ab1dbb0d352c1e15e40b3de22 Mon Sep 17 00:00:00 2001 From: Adrian Kummerländer Date: Wed, 14 May 2014 20:55:51 +0200 Subject: Moved responsibility for argument conversion to FunctionBase descendants * external functions may expect arguments with a type different from boost::filesystem::path so they are only provided raw string values * moved xalan string conversion logic into separate compilation unit --- src/support/xalan_string.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/support/xalan_string.h (limited to 'src/support/xalan_string.h') diff --git a/src/support/xalan_string.h b/src/support/xalan_string.h new file mode 100644 index 0000000..2220be5 --- /dev/null +++ b/src/support/xalan_string.h @@ -0,0 +1,17 @@ +#ifndef INPUTXSLT_SRC_SUPPORT_XALAN_STRING_H_ +#define INPUTXSLT_SRC_SUPPORT_XALAN_STRING_H_ + +#include + +#include + +#include "common.h" + +namespace InputXSLT { + +std::string toString(const xalan::XalanDOMString&); +xalan::XalanDOMString toString(const std::string&); + +} + +#endif // INPUTXSLT_SRC_SUPPORT_XALAN_STRING_H_ -- cgit v1.2.3