aboutsummaryrefslogtreecommitdiff
path: root/src/plattform_guard.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plattform_guard.h')
-rw-r--r--src/plattform_guard.h17
1 files changed, 2 insertions, 15 deletions
diff --git a/src/plattform_guard.h b/src/plattform_guard.h
index fe8b954..12b19f0 100644
--- a/src/plattform_guard.h
+++ b/src/plattform_guard.h
@@ -1,24 +1,11 @@
#ifndef INPUTXSLT_SRC_PLATTFORM_GUARD_H_
#define INPUTXSLT_SRC_PLATTFORM_GUARD_H_
-#include <xalanc/Include/PlatformDefinitions.hpp>
-#include <xalanc/XalanTransformer/XalanTransformer.hpp>
-
-#include <xercesc/util/PlatformUtils.hpp>
-
-#include "common.h"
-
namespace InputXSLT {
struct PlattformGuard {
- PlattformGuard() {
- xercesc::XMLPlatformUtils::Initialize();
- xalan::XalanTransformer::initialize();
- }
-
- ~PlattformGuard() {
- xalan::XalanTransformer::terminate();
- }
+ PlattformGuard();
+ ~PlattformGuard();
};
}