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 | 8916ec24830ca0747676e2a611de77bb850b23e1 (patch) | |
tree | cd1888410ecea2147c3d4bebde042c8a5217519b | |
parent | 21722ae48442b1ed2a6f398b36b23ffb48cd2901 (diff) | |
download | fork-ledger-8916ec24830ca0747676e2a611de77bb850b23e1.tar.gz fork-ledger-8916ec24830ca0747676e2a611de77bb850b23e1.tar.bz2 fork-ledger-8916ec24830ca0747676e2a611de77bb850b23e1.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: |