diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-21 19:22:55 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-21 19:22:55 -0400 |
commit | dc63429785fb677f5997a84ee7dd1dbc03f1e127 (patch) | |
tree | d5459a3c35e3afa1068301d4305476c68d0d501b /src/output.h | |
parent | 20a3ba0d2145c7f931b9e76e5ba81f917c5fbad7 (diff) | |
download | fork-ledger-dc63429785fb677f5997a84ee7dd1dbc03f1e127.tar.gz fork-ledger-dc63429785fb677f5997a84ee7dd1dbc03f1e127.tar.bz2 fork-ledger-dc63429785fb677f5997a84ee7dd1dbc03f1e127.zip |
Removed an unused class: format_entries
Diffstat (limited to 'src/output.h')
-rw-r--r-- | src/output.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/output.h b/src/output.h index 18718c7c..6eaef081 100644 --- a/src/output.h +++ b/src/output.h @@ -129,34 +129,6 @@ public: * * Long. */ -class format_entries : public format_xacts -{ - public: - format_entries(report_t& _report, const string& format) - : format_xacts(_report, format) { - TRACE_CTOR(format_entries, "report_t&, const string&"); - } - virtual ~format_entries() { - TRACE_DTOR(format_entries); - } - - virtual void format_last_entry(); - - virtual void flush() { - if (last_entry) { - format_last_entry(); - last_entry = NULL; - } - format_xacts::flush(); - } - virtual void operator()(xact_t& xact); -}; - -/** - * @brief Brief - * - * Long. - */ class format_accounts : public item_handler<account_t> { protected: |