blob: 914f9b339c3ff26a18f8597244dba82905331f62 (
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
|
#ifndef INPUTXSLT_SRC_FUNCTION_READ_DIRECTORY_H_
#define INPUTXSLT_SRC_FUNCTION_READ_DIRECTORY_H_
#include <boost/filesystem.hpp>
#include "base.h"
namespace InputXSLT {
class FunctionReadDirectory : public FunctionBase<
FunctionReadDirectory,
boost::filesystem::path
> {
public:
using FunctionBase::FunctionBase;
protected:
friend FunctionBase;
DomDocumentCache::document_ptr constructDocument(
boost::filesystem::path) const;
};
}
#endif // INPUTXSLT_SRC_FUNCTION_READ_DIRECTORY_H_
|