aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/platform_guard.cc (renamed from src/plattform_guard.cc)8
-rw-r--r--src/platform_guard.h (renamed from src/plattform_guard.h)12
2 files changed, 10 insertions, 10 deletions
diff --git a/src/plattform_guard.cc b/src/platform_guard.cc
index 5d19e32..6be5b4a 100644
--- a/src/plattform_guard.cc
+++ b/src/platform_guard.cc
@@ -1,4 +1,4 @@
-#include "plattform_guard.h"
+#include "platform_guard.h"
#include <xalanc/Include/PlatformDefinitions.hpp>
#include <xalanc/XalanTransformer/XalanTransformer.hpp>
@@ -15,7 +15,7 @@
namespace InputXSLT {
-PlattformGuard::PlattformGuard(const std::vector<std::string>& path):
+PlatformGuard::PlatformGuard(const std::vector<std::string>& path):
include_resolver_(path) {
xercesc::XMLPlatformUtils::Initialize();
xalan::XalanTransformer::initialize();
@@ -61,11 +61,11 @@ PlattformGuard::PlattformGuard(const std::vector<std::string>& path):
);
}
-PlattformGuard::~PlattformGuard() {
+PlatformGuard::~PlatformGuard() {
xalan::XalanTransformer::terminate();
}
-IncludeEntityResolver* PlattformGuard::getEntityResolver() {
+IncludeEntityResolver* PlatformGuard::getEntityResolver() {
return &this->include_resolver_;
}
diff --git a/src/plattform_guard.h b/src/platform_guard.h
index ccc9449..ff72207 100644
--- a/src/plattform_guard.h
+++ b/src/platform_guard.h
@@ -1,5 +1,5 @@
-#ifndef INPUTXSLT_SRC_PLATTFORM_GUARD_H_
-#define INPUTXSLT_SRC_PLATTFORM_GUARD_H_
+#ifndef INPUTXSLT_SRC_PLATFORM_GUARD_H_
+#define INPUTXSLT_SRC_PLATFORM_GUARD_H_
#include <string>
#include <vector>
@@ -8,10 +8,10 @@
namespace InputXSLT {
-class PlattformGuard {
+class PlatformGuard {
public:
- PlattformGuard(const std::vector<std::string>&);
- ~PlattformGuard();
+ PlatformGuard(const std::vector<std::string>&);
+ ~PlatformGuard();
IncludeEntityResolver* getEntityResolver();
@@ -22,4 +22,4 @@ class PlattformGuard {
}
-#endif // INPUTXSLT_SRC_PLATTFORM_GUARD_H_
+#endif // INPUTXSLT_SRC_PLATFORM_GUARD_H_