aboutsummaryrefslogtreecommitdiff
path: root/src/function/transform.h
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-08-23 00:19:09 +0200
committerAdrian Kummerlaender2014-08-23 00:19:09 +0200
commit5a54b5b8150d8bf1ac5db3ac688479b3aca6486d (patch)
tree08fe4ce82a6f0da1837504afaf9c0d27affa5513 /src/function/transform.h
parent2c89112141530617b51af8c41211c2507ec8c738 (diff)
downloadInputXSLT-5a54b5b8150d8bf1ac5db3ac688479b3aca6486d.tar
InputXSLT-5a54b5b8150d8bf1ac5db3ac688479b3aca6486d.tar.gz
InputXSLT-5a54b5b8150d8bf1ac5db3ac688479b3aca6486d.tar.bz2
InputXSLT-5a54b5b8150d8bf1ac5db3ac688479b3aca6486d.tar.lz
InputXSLT-5a54b5b8150d8bf1ac5db3ac688479b3aca6486d.tar.xz
InputXSLT-5a54b5b8150d8bf1ac5db3ac688479b3aca6486d.tar.zst
InputXSLT-5a54b5b8150d8bf1ac5db3ac688479b3aca6486d.zip
Replaced FunctionTransform by making the target of FunctionGenerate optional
* if the target parameter is not provided FunctionGenerate now performs exactly the same functionality as FunctionTransform * added "boost::optional<boost::filesystem::path>" specialization to the XObjectValue class * modified test cases accordingly * modified README.md accordingly
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_