summaryrefslogtreecommitdiff
path: root/src/account.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2013-01-16 12:18:33 -0800
committerJohn Wiegley <johnw@newartisans.com>2013-01-16 12:18:33 -0800
commit6ff7dac73f78e885637b2827457ac5e4acfded67 (patch)
tree61e53a8960a3dbd54f3ba11e3361525c506430de /src/account.h
parentd922f4659570c87a06352b0da9d877f047ec442c (diff)
parent855432c4cd32b03b0751cffb0e215f2ceefdc6e5 (diff)
downloadfork-ledger-6ff7dac73f78e885637b2827457ac5e4acfded67.tar.gz
fork-ledger-6ff7dac73f78e885637b2827457ac5e4acfded67.tar.bz2
fork-ledger-6ff7dac73f78e885637b2827457ac5e4acfded67.zip
Merge pull request #122 from enderw88/Lisp-fixes
Fix ledger-add-entry
Diffstat (limited to 'src/account.h')
-rw-r--r--src/account.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/account.h b/src/account.h
index a2fcb8de..3642ada0 100644
--- a/src/account.h
+++ b/src/account.h
@@ -308,6 +308,13 @@ std::ostream& operator<<(std::ostream& out, const account_t& account);
void put_account(property_tree::ptree& pt, const account_t& acct,
function<bool(const account_t&)> pred);
+//simple struct added to allow std::map to compare accounts in the accounts report
+struct account_compare {
+ bool operator() (const account_t& lhs, const account_t& rhs){
+ return (lhs.fullname().compare(rhs.fullname()) < 0);
+ }
+};
+
} // namespace ledger
#endif // _ACCOUNT_H