aboutsummaryrefslogtreecommitdiff
path: root/src/function/transform.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/function/transform.h')
-rw-r--r--src/function/transform.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/function/transform.h b/src/function/transform.h
deleted file mode 100644
index 6c8c05d..0000000
--- a/src/function/transform.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef INPUTXSLT_SRC_FUNCTION_TRANSFORM_H_
-#define INPUTXSLT_SRC_FUNCTION_TRANSFORM_H_
-
-#include <xalanc/XSLT/XSLTInputSource.hpp>
-
-#include "base.h"
-
-namespace InputXSLT {
-
-class FunctionTransform : public FunctionBase<
- FunctionTransform,
- xalan::XSLTInputSource,
- xalan::XSLTInputSource
-> {
- public:
- using FunctionBase::FunctionBase;
-
- protected:
- friend FunctionBase;
-
- DomDocumentCache::document_ptr constructDocument(
- const FilesystemContext&,
- xalan::XSLTInputSource,
- xalan::XSLTInputSource
- ) const;
-
-};
-
-}
-
-#endif // INPUTXSLT_SRC_FUNCTION_TRANSFORM_H_