blob: ba2020ecc7c32ebc26b02480502ace0625d88c91 (
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
34
35
36
37
38
|
#ifndef _REGISTER_H
#define _REGISTER_H
#include "xpath.h"
namespace ledger {
class register_command : public xml::xpath_t::functor_t
{
public:
register_command() : xml::xpath_t::functor_t("register") {}
virtual void operator()(value_t&, xml::xpath_t::scope_t * locals) {
std::ostream * out = get_ptr<std::ostream>(locals, 0);
xml::document_t * doc = get_ptr<xml::document_t>(locals, 1);
print_document(*out, doc);
}
virtual void print_document(std::ostream& out, xml::document_t * doc);
};
enum elision_style_t {
TRUNCATE_TRAILING,
TRUNCATE_MIDDLE,
TRUNCATE_LEADING,
ABBREVIATE
};
string abbreviate(const string& str,
unsigned int width,
elision_style_t elision_style = TRUNCATE_TRAILING,
const bool is_account = false,
int abbrev_length = 2);
} // namespace ledger
#endif // _REGISTER_H
|