aboutsummaryrefslogtreecommitdiff
path: root/src/platform_guard.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/platform_guard.h')
-rw-r--r--src/platform_guard.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/platform_guard.h b/src/platform_guard.h
new file mode 100644
index 0000000..ff72207
--- /dev/null
+++ b/src/platform_guard.h
@@ -0,0 +1,25 @@
+#ifndef INPUTXSLT_SRC_PLATFORM_GUARD_H_
+#define INPUTXSLT_SRC_PLATFORM_GUARD_H_
+
+#include <string>
+#include <vector>
+
+#include "support/include_entity_resolver.h"
+
+namespace InputXSLT {
+
+class PlatformGuard {
+ public:
+ PlatformGuard(const std::vector<std::string>&);
+ ~PlatformGuard();
+
+ IncludeEntityResolver* getEntityResolver();
+
+ private:
+ IncludeEntityResolver include_resolver_;
+
+};
+
+}
+
+#endif // INPUTXSLT_SRC_PLATFORM_GUARD_H_