summaryrefslogtreecommitdiff
path: root/src/account.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/account.h')
-rw-r--r--src/account.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/account.h b/src/account.h
index 2cf8192a..18792154 100644
--- a/src/account.h
+++ b/src/account.h
@@ -97,6 +97,7 @@ class account_t : public scope_t
return fullname();
}
string fullname() const;
+ string partial_name() const;
void add_account(account_t * acct) {
accounts.insert(accounts_map::value_type(acct->name, acct));
@@ -172,6 +173,10 @@ class account_t : public scope_t
xdata_ = xdata_t();
return *xdata_;
}
+ const xdata_t& xdata() const {
+ assert(xdata_);
+ return *xdata_;
+ }
void calculate_sums(expr_t& amount_expr, scope_t& scope);
};