diff options
author | John Wiegley <johnw@newartisans.com> | 2013-01-29 09:36:03 -0800 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2013-01-29 09:36:03 -0800 |
commit | 1e709d1040eb2c10f7ab0ea80e903c12fcb0f35c (patch) | |
tree | a3ab9b26047500e8a4582e3715ecfead19389b3c /src/account.h | |
parent | 69001d927afd1fa8fa4ed121591505e34d253c04 (diff) | |
parent | f9da94c909c57f416bec0266dd20b931f556a7a9 (diff) | |
download | fork-ledger-1e709d1040eb2c10f7ab0ea80e903c12fcb0f35c.tar.gz fork-ledger-1e709d1040eb2c10f7ab0ea80e903c12fcb0f35c.tar.bz2 fork-ledger-1e709d1040eb2c10f7ab0ea80e903c12fcb0f35c.zip |
Merge pull request #132 from enderw88/bug514-sort-accounts-and-commodities
Fixes bug 514. accounts and commodities output now sorts
Diffstat (limited to 'src/account.h')
-rw-r--r-- | src/account.h | 7 |
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 |