diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-05 16:15:09 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-05 16:15:09 -0400 |
commit | 290cac7b84b60305e185c140645c9bac2ca9fb0e (patch) | |
tree | c389da2eed81612ffb3868f61c31fa2534855fe1 /src/post.h | |
parent | f8bfbf8c250fa24bc9e26b9bf1eb64815a5a29ee (diff) | |
parent | 1417b40fdf0a92a85ab01f233c0ae076079901a2 (diff) | |
download | fork-ledger-290cac7b84b60305e185c140645c9bac2ca9fb0e.tar.gz fork-ledger-290cac7b84b60305e185c140645c9bac2ca9fb0e.tar.bz2 fork-ledger-290cac7b84b60305e185c140645c9bac2ca9fb0e.zip |
Merge branch 'next'
Diffstat (limited to 'src/post.h')
-rw-r--r-- | src/post.h | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -52,11 +52,12 @@ class account_t; class post_t : public item_t { public: -#define POST_VIRTUAL 0x08 // the account was specified with (parens) -#define POST_MUST_BALANCE 0x10 // posting must balance in the transaction -#define POST_CALCULATED 0x20 // posting's amount was calculated -#define POST_COST_CALCULATED 0x40 // posting's cost was calculated -#define POST_COST_IN_FULL 0x80 // cost specified using @@ +#define POST_VIRTUAL 0x04 // the account was specified with (parens) +#define POST_MUST_BALANCE 0x08 // posting must balance in the transaction +#define POST_CALCULATED 0x10 // posting's amount was calculated +#define POST_COST_CALCULATED 0x20 // posting's cost was calculated +#define POST_COST_IN_FULL 0x40 // cost specified using @@ +#define POST_ANONYMIZED 0x80 // a temporary, anonymous posting xact_t * xact; // only set for posts of regular xacts account_t * account; |