summaryrefslogtreecommitdiff
path: root/src/commodity.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2013-01-29 09:36:03 -0800
committerJohn Wiegley <johnw@newartisans.com>2013-01-29 09:36:03 -0800
commit1e709d1040eb2c10f7ab0ea80e903c12fcb0f35c (patch)
treea3ab9b26047500e8a4582e3715ecfead19389b3c /src/commodity.h
parent69001d927afd1fa8fa4ed121591505e34d253c04 (diff)
parentf9da94c909c57f416bec0266dd20b931f556a7a9 (diff)
downloadfork-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/commodity.h')
-rw-r--r--src/commodity.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/commodity.h b/src/commodity.h
index 1d69b689..82efac6a 100644
--- a/src/commodity.h
+++ b/src/commodity.h
@@ -351,6 +351,13 @@ inline std::ostream& operator<<(std::ostream& out, const commodity_t& comm) {
void put_commodity(property_tree::ptree& pt, const commodity_t& comm,
bool commodity_details = false);
+//simple struct to allow std::map to compare commodities names
+struct commodity_compare {
+ bool operator() (const commodity_t* lhs, const commodity_t* rhs){
+ return (lhs->symbol().compare(rhs->symbol()) < 0);
+ }
+};
+
} // namespace ledger
#endif // _COMMODITY_H