aboutsummaryrefslogtreecommitdiff
path: root/src/function/read_xml_file.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/function/read_xml_file.h')
-rw-r--r--src/function/read_xml_file.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/function/read_xml_file.h b/src/function/read_xml_file.h
deleted file mode 100644
index 7fe949a..0000000
--- a/src/function/read_xml_file.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef INPUTXSLT_SRC_FUNCTION_READ_XML_FILE_H_
-#define INPUTXSLT_SRC_FUNCTION_READ_XML_FILE_H_
-
-#include "base.h"
-
-namespace InputXSLT {
-
-class FunctionReadXmlFile : public FunctionBase<
- FunctionReadXmlFile,
- std::string
-> {
- public:
- using FunctionBase::FunctionBase;
-
- protected:
- friend FunctionBase;
-
- xercesc::DOMDocument* constructDocument(
- const FilesystemContext&,
- std::string
- );
-
-};
-
-}
-
-#endif // INPUTXSLT_SRC_FUNCTION_READ_XML_FILE_H_