diff options
author | John Wiegley <johnw@newartisans.com> | 2010-05-18 17:37:27 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-05-18 17:37:27 -0400 |
commit | 47bfe58ab39aa8d7ed4dc804409f1f78f485a5a6 (patch) | |
tree | 0b76e580880e0cb6f6ed5bec8e8bc053797d3a5b /src/post.h | |
parent | 017492ef5e80003073c5d053252d4a68a44260ae (diff) | |
download | fork-ledger-47bfe58ab39aa8d7ed4dc804409f1f78f485a5a6.tar.gz fork-ledger-47bfe58ab39aa8d7ed4dc804409f1f78f485a5a6.tar.bz2 fork-ledger-47bfe58ab39aa8d7ed4dc804409f1f78f485a5a6.zip |
Added account_id and xact_id valexpr vars for posts
account_id is the "whicheth" number for that posting within its
account. The xact_id is within its transaction.
Diffstat (limited to 'src/post.h')
-rw-r--r-- | src/post.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -118,6 +118,9 @@ public: amount_t resolve_expr(scope_t& scope, expr_t& expr); + std::size_t xact_id() const; + std::size_t account_id() const; + bool valid() const; struct xdata_t : public supports_flags<uint_least16_t> |