diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-06 13:04:44 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-06 13:04:44 -0400 |
commit | e8ffbd6f2fb57f2b65f57f92edf8eb444cc2f71f (patch) | |
tree | b72e9a1454b6721d59e3844d71a91880c94e2cae /src/chain.h | |
parent | 290cac7b84b60305e185c140645c9bac2ca9fb0e (diff) | |
parent | 39f9854e2c1f807f6e9c90d80e1eec2bf9b90017 (diff) | |
download | fork-ledger-e8ffbd6f2fb57f2b65f57f92edf8eb444cc2f71f.tar.gz fork-ledger-e8ffbd6f2fb57f2b65f57f92edf8eb444cc2f71f.tar.bz2 fork-ledger-e8ffbd6f2fb57f2b65f57f92edf8eb444cc2f71f.zip |
Merge branch 'next'
Diffstat (limited to 'src/chain.h')
-rw-r--r-- | src/chain.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/chain.h b/src/chain.h index 59b04eb8..1a50a077 100644 --- a/src/chain.h +++ b/src/chain.h @@ -93,20 +93,20 @@ typedef shared_ptr<item_handler<account_t> > acct_handler_ptr; class report_t; post_handler_ptr -chain_pre_post_handlers(report_t& report, - post_handler_ptr base_handler); +chain_pre_post_handlers(post_handler_ptr base_handler, + report_t& report); post_handler_ptr -chain_post_handlers(report_t& report, - post_handler_ptr base_handler, +chain_post_handlers(post_handler_ptr base_handler, + report_t& report, bool for_accounts_report = false); inline post_handler_ptr -chain_handlers(report_t& report, - post_handler_ptr handler, +chain_handlers(post_handler_ptr handler, + report_t& report, bool for_accounts_report = false) { - handler = chain_post_handlers(report, handler, for_accounts_report); - handler = chain_pre_post_handlers(report, handler); + handler = chain_post_handlers(handler, report, for_accounts_report); + handler = chain_pre_post_handlers(handler, report); return handler; } |