From cdf4ad3486debe75fe89b2f04bb62541f3ac8405 Mon Sep 17 00:00:00 2001 From: Adrian Kummerländer Date: Mon, 21 Apr 2014 13:30:23 +0200 Subject: Extracted filesystem path resolution into InputXSLT::FilesystemContext * this class provides methods for resolving paths relative to the contained base path * other filesystem interaction methods will also be implemented in this class ** for instance directory traversal --- src/transformer_facade.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/transformer_facade.h') diff --git a/src/transformer_facade.h b/src/transformer_facade.h index c11fa78..ed25edc 100644 --- a/src/transformer_facade.h +++ b/src/transformer_facade.h @@ -7,6 +7,7 @@ #include #include "common.h" +#include "support/filesystem_context.h" namespace InputXSLT { @@ -17,6 +18,7 @@ class TransformerFacade { int execute(const std::string&, const std::string&); private: + const FilesystemContext fs_context_; mutable xalan::XercesParserLiaison parser_; xalan::XalanTransformer transformer_; -- cgit v1.2.3