diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-20 02:53:54 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-20 02:53:54 -0400 |
commit | c1b25fcf8629eca326fe6dd586e4896eeb5f2d45 (patch) | |
tree | f7c59ce215ee66513db2f9eb142cdf9e7095c465 /src/output.h | |
parent | f2f52066d2a9c82619ffea0f3972e48417a90b5b (diff) | |
download | fork-ledger-c1b25fcf8629eca326fe6dd586e4896eeb5f2d45.tar.gz fork-ledger-c1b25fcf8629eca326fe6dd586e4896eeb5f2d45.tar.bz2 fork-ledger-c1b25fcf8629eca326fe6dd586e4896eeb5f2d45.zip |
Rewrote the equity command, which is working again
The old implementation used an account formatter, and was very
specialized. The new is done as a transaction filter, and works along
with everything else, eliminating bugs special to the equity report.
Diffstat (limited to 'src/output.h')
-rw-r--r-- | src/output.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/output.h b/src/output.h index 7019b7b2..f638f4de 100644 --- a/src/output.h +++ b/src/output.h @@ -192,29 +192,6 @@ public: virtual void operator()(account_t& account); }; -/** - * @brief Brief - * - * Long. - */ -class format_equity : public format_accounts -{ - format_t first_line_format; - format_t next_lines_format; - - mutable value_t total; - - public: - format_equity(report_t& _report, - const string& _format); - virtual ~format_equity() { - TRACE_DTOR(format_equity); - } - - virtual void post_account(account_t& account); - virtual void flush(); -}; - } // namespace ledger #endif // _OUTPUT_H |