summaryrefslogtreecommitdiff
path: root/src/xact.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xact.h')
-rw-r--r--src/xact.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xact.h b/src/xact.h
index bb2f1e23..70d411ed 100644
--- a/src/xact.h
+++ b/src/xact.h
@@ -69,6 +69,8 @@ public:
optional<expr_t> amount_expr;
optional<amount_t> cost;
optional<expr_t> cost_expr;
+ optional<amount_t> assigned_amount;
+ optional<expr_t> assigned_amount_expr;
istream_pos_type beg_pos;
unsigned long beg_line;
@@ -84,7 +86,7 @@ public:
{
TRACE_CTOR(xact_t, "account_t *, flags_t");
}
- xact_t(account_t * _account,
+ xact_t(account_t * _account,
const amount_t& _amount,
flags_t _flags = XACT_NORMAL,
const optional<string>& _note = none)