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, 7 insertions, 0 deletions
diff --git a/src/xact.h b/src/xact.h
index 07fc68f5..337abce8 100644
--- a/src/xact.h
+++ b/src/xact.h
@@ -77,6 +77,13 @@ public:
virtual void add_post(post_t * post);
virtual bool remove_post(post_t * post);
+ posts_list::iterator posts_begin() {
+ return posts.begin();
+ }
+ posts_list::iterator posts_end() {
+ return posts.end();
+ }
+
virtual bool finalize();
virtual bool valid() const {
return true;