blob: fa38e3fa73936fe15a92c7d2b23625291dcaa8f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#ifndef INPUTXSLT_SRC_FUNCTION_GENERATE_H_
#define INPUTXSLT_SRC_FUNCTION_GENERATE_H_
#include <xalanc/XSLT/XSLTInputSource.hpp>
#include "base.h"
namespace InputXSLT {
class FunctionGenerate : public FunctionBase<
FunctionGenerate,
xalan::XSLTInputSource,
xalan::XSLTInputSource,
boost::optional<boost::filesystem::path>
> {
public:
using FunctionBase::FunctionBase;
protected:
friend FunctionBase;
DomDocumentCache::document_ptr constructDocument(
const FilesystemContext&,
xalan::XSLTInputSource,
xalan::XSLTInputSource,
boost::optional<boost::filesystem::path>
) const;
};
}
#endif // INPUTXSLT_SRC_FUNCTION_GENERATE_H_
|