summaryrefslogtreecommitdiff
path: root/src/xact.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xact.h')
-rw-r--r--src/xact.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/xact.h b/src/xact.h
index 8d9b7d0f..6f35a071 100644
--- a/src/xact.h
+++ b/src/xact.h
@@ -46,13 +46,16 @@
#ifndef _XACT_H
#define _XACT_H
-#include "post.h"
+#include "item.h"
#include "predicate.h"
namespace ledger {
+class post_t;
class journal_t;
+typedef std::list<post_t *> posts_list;
+
/**
* @brief Brief
*
@@ -244,7 +247,7 @@ inline bool auto_xact_finalizer_t::operator()(xact_t& xact, bool post) {
return true;
}
-typedef std::list<xact_t *> xacts_list;
+typedef std::list<xact_t *> xacts_list;
typedef std::list<auto_xact_t *> auto_xacts_list;
typedef std::list<period_xact_t *> period_xacts_list;