blob: dfc65c006b8476971fce7897a18de4919fa16ac2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _DERIVE_H
#define _DERIVE_H
#include "xpath.h"
namespace ledger {
class derive_command : public xml::xpath_t::functor_t
{
public:
derive_command() : xml::xpath_t::functor_t("entry", true) {}
virtual void operator()(value_t& result, xml::xpath_t::scope_t * locals);
};
} // namespace ledger
#endif // _DERIVE_H
|