blob: c0607fc2732c94a4ccedec715148a7dfb8e82c21 (
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 "journal.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
|