From 35334241ce4b76b1b1a66219ce938f27fdf39031 Mon Sep 17 00:00:00 2001 From: Adrian Kummerländer Date: Tue, 20 May 2014 21:17:10 +0200 Subject: Replaced FunctionResolveInclude with IncludeEntityResolver * xalan / xerces offers the possibility of implementing custom entity resolvers which are called upon by "" had to be implemented --- src/plattform_guard.h | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'src/plattform_guard.h') diff --git a/src/plattform_guard.h b/src/plattform_guard.h index f6abcba..ccc9449 100644 --- a/src/plattform_guard.h +++ b/src/plattform_guard.h @@ -4,11 +4,20 @@ #include #include +#include "support/include_entity_resolver.h" + namespace InputXSLT { -struct PlattformGuard { - PlattformGuard(const std::vector&); - ~PlattformGuard(); +class PlattformGuard { + public: + PlattformGuard(const std::vector&); + ~PlattformGuard(); + + IncludeEntityResolver* getEntityResolver(); + + private: + IncludeEntityResolver include_resolver_; + }; } -- cgit v1.2.3