summaryrefslogtreecommitdiff
path: root/src/commodity.h
diff options
context:
space:
mode:
authorCraig Earls <enderw88@gmail.com>2013-01-29 10:03:47 -0700
committerCraig Earls <enderw88@gmail.com>2013-01-29 10:03:47 -0700
commitf9da94c909c57f416bec0266dd20b931f556a7a9 (patch)
treeb60ee5f61492df15cb4124fcbca841e15d3810ef /src/commodity.h
parent5d1971ee51a18f927185d20fb0a4426d8f08aa86 (diff)
downloadfork-ledger-f9da94c909c57f416bec0266dd20b931f556a7a9.tar.gz
fork-ledger-f9da94c909c57f416bec0266dd20b931f556a7a9.tar.bz2
fork-ledger-f9da94c909c57f416bec0266dd20b931f556a7a9.zip
Fixes bug 514. accounts and commodities output now sorts
updated tests included.
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 ab496850..37b02e74 100644
--- a/src/commodity.h
+++ b/src/commodity.h
@@ -349,6 +349,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