aboutsummaryrefslogtreecommitdiff
path: root/src/function/external_text_formatter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/function/external_text_formatter.h')
-rw-r--r--src/function/external_text_formatter.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/function/external_text_formatter.h b/src/function/external_text_formatter.h
index 3af1d52..4a2fb7e 100644
--- a/src/function/external_text_formatter.h
+++ b/src/function/external_text_formatter.h
@@ -1,13 +1,15 @@
#ifndef INPUTXSLT_SRC_FUNCTION_EXTERNAL_TEXT_FORMATTER_H_
#define INPUTXSLT_SRC_FUNCTION_EXTERNAL_TEXT_FORMATTER_H_
+#include <boost/filesystem.hpp>
+
#include "base.h"
namespace InputXSLT {
class FunctionExternalTextFormatter : public FunctionBase<
FunctionExternalTextFormatter,
- std::string,
+ boost::filesystem::path,
std::string
> {
public:
@@ -17,7 +19,7 @@ class FunctionExternalTextFormatter : public FunctionBase<
friend FunctionBase;
xercesc::DOMDocument* constructDocument(
- std::string,
+ boost::filesystem::path,
std::string
);