summaryrefslogtreecommitdiff
path: root/src/xact.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-04 03:34:37 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-04 03:34:37 -0400
commit1cc33531ea7cf82e41b1ed49bf8ffc5afea084e4 (patch)
tree0ecd593b7ca164743bb9a4addf70ec76072288ce /src/xact.h
parent28da097fc245340b316539c5533d470d82f19965 (diff)
downloadfork-ledger-1cc33531ea7cf82e41b1ed49bf8ffc5afea084e4.tar.gz
fork-ledger-1cc33531ea7cf82e41b1ed49bf8ffc5afea084e4.tar.bz2
fork-ledger-1cc33531ea7cf82e41b1ed49bf8ffc5afea084e4.zip
Simplified the textual parser, and improved metadata support.
Diffstat (limited to 'src/xact.h')
-rw-r--r--src/xact.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/xact.h b/src/xact.h
index 9c502f94..d7e87748 100644
--- a/src/xact.h
+++ b/src/xact.h
@@ -73,17 +73,8 @@ public:
account_t * account;
amount_t amount; // can be null until finalization
-#if defined(STORE_XACT_EXPRS)
- optional<expr_t> amount_expr;
-#endif
optional<amount_t> cost;
-#if defined(STORE_XACT_EXPRS)
- optional<expr_t> cost_expr;
-#endif
optional<amount_t> assigned_amount;
-#if defined(STORE_XACT_EXPRS)
- optional<expr_t> assigned_amount_expr;
-#endif
xact_t(account_t * _account = NULL,
flags_t _flags = ITEM_NORMAL)