summaryrefslogtreecommitdiff
path: root/src/chain.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-23 19:07:30 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-23 19:07:30 -0400
commit944c63e6f26d1f05ba6f63c60f510d3796872f3e (patch)
treee1fc54319c2c42c16a64e95930acaca063658863 /src/chain.h
parent057506ab6dddbfb75d1bb29289602f375ca57df5 (diff)
downloadfork-ledger-944c63e6f26d1f05ba6f63c60f510d3796872f3e.tar.gz
fork-ledger-944c63e6f26d1f05ba6f63c60f510d3796872f3e.tar.bz2
fork-ledger-944c63e6f26d1f05ba6f63c60f510d3796872f3e.zip
The Great Renaming, Part II
The last commit did not contain the majority of changes because of a slight mishap. This contains the real changeset.
Diffstat (limited to 'src/chain.h')
-rw-r--r--src/chain.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/chain.h b/src/chain.h
index b064c4ed..89f4ab6e 100644
--- a/src/chain.h
+++ b/src/chain.h
@@ -46,7 +46,7 @@
#ifndef _CHAIN_H
#define _CHAIN_H
-#include "xact.h"
+#include "post.h"
#include "account.h"
namespace ledger {
@@ -84,13 +84,13 @@ public:
}
};
-typedef shared_ptr<item_handler<xact_t> > xact_handler_ptr;
+typedef shared_ptr<item_handler<post_t> > post_handler_ptr;
typedef shared_ptr<item_handler<account_t> > acct_handler_ptr;
class report_t;
-xact_handler_ptr
-chain_xact_handlers(report_t& report,
- xact_handler_ptr base_handler,
+post_handler_ptr
+chain_post_handlers(report_t& report,
+ post_handler_ptr base_handler,
bool only_preliminaries = false);
} // namespace ledger