summaryrefslogtreecommitdiff
path: root/src/report.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2013-01-29 09:35:02 -0800
committerJohn Wiegley <johnw@newartisans.com>2013-01-29 09:35:02 -0800
commit69001d927afd1fa8fa4ed121591505e34d253c04 (patch)
tree200c676f6111f60f2eca16e1b6b75a4b992bdd10 /src/report.h
parent0e91b174b5fabbd1b0e192522c0be66cf7f755e7 (diff)
parent3e72a51dc3d296c9f647efaf4cbfbbdcf4bf6df1 (diff)
downloadfork-ledger-69001d927afd1fa8fa4ed121591505e34d253c04.tar.gz
fork-ledger-69001d927afd1fa8fa4ed121591505e34d253c04.tar.bz2
fork-ledger-69001d927afd1fa8fa4ed121591505e34d253c04.zip
Merge pull request #131 from enderw88/add-tags-command
Addes tags command and --values option
Diffstat (limited to 'src/report.h')
-rw-r--r--src/report.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/report.h b/src/report.h
index 2eac61fe..b0044f60 100644
--- a/src/report.h
+++ b/src/report.h
@@ -358,6 +358,7 @@ public:
HANDLER(account_width_).report(out);
HANDLER(amount_width_).report(out);
HANDLER(total_width_).report(out);
+ HANDLER(values).report(out);
}
option_t<report_t> * lookup_option(const char * p);
@@ -1043,6 +1044,7 @@ public:
OPTION(report_t, account_width_);
OPTION(report_t, amount_width_);
OPTION(report_t, total_width_);
+ OPTION(report_t, values);
};
template <class Type = post_t,