diff options
author | John Wiegley <johnw@newartisans.com> | 2006-02-20 00:04:13 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 02:41:24 -0400 |
commit | 2d95c0e2a522a7f607af227e6c2fc0d6e731ace5 (patch) | |
tree | cd1888410ecea2147c3d4bebde042c8a5217519b | |
parent | 945d315ebac5e2d5c510b43399fc8da625032b36 (diff) | |
download | fork-ledger-2d95c0e2a522a7f607af227e6c2fc0d6e731ace5.tar.gz fork-ledger-2d95c0e2a522a7f607af227e6c2fc0d6e731ace5.tar.bz2 fork-ledger-2d95c0e2a522a7f607af227e6c2fc0d6e731ace5.zip |
Added a global variable `entry_balance' which contains the balance of
the last attempted entry finalization.
-rw-r--r-- | journal.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -150,6 +150,8 @@ class entry_base_t virtual bool valid() const = 0; }; +extern value_t entry_balance; + class entry_t : public entry_base_t { public: |