aboutsummaryrefslogtreecommitdiff
path: root/src/function/read_file.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/function/read_file.h')
-rw-r--r--src/function/read_file.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/function/read_file.h b/src/function/read_file.h
index f800c37..f5bdb9d 100644
--- a/src/function/read_file.h
+++ b/src/function/read_file.h
@@ -1,13 +1,13 @@
#ifndef INPUTXSLT_SRC_FUNCTION_READ_FILE_H_
#define INPUTXSLT_SRC_FUNCTION_READ_FILE_H_
-#include <xalanc/Include/PlatformDefinitions.hpp>
-#include <xercesc/util/PlatformUtils.hpp>
#include <xalanc/XalanTransformer/XalanTransformer.hpp>
#include <xalanc/XPath/XObjectFactory.hpp>
#include <xalanc/XPath/Function.hpp>
#include <xalanc/XPath/XObject.hpp>
+#include "boost/filesystem.hpp"
+
#include <string>
#include "common.h"
@@ -31,7 +31,7 @@ class FunctionReadFile : public xalan::Function {
bool operator==(const FunctionReadFile&) const = delete;
private:
- const std::string path_;
+ const boost::filesystem::path path_;
const xalan::XalanDOMString& getError(xalan::XalanDOMString&) const;