diff options
author | John Wiegley <johnw@newartisans.com> | 2009-10-25 05:13:21 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-09 02:17:26 -0500 |
commit | 2c80227339538154ad0869e746f52db805325589 (patch) | |
tree | 091188e3ad5c8cc41e3f94285969ef9849a97ac4 /src/amount.cc | |
parent | 7411c74d6d5bea42cb9fa5b6b0ed90480c954a03 (diff) | |
download | fork-ledger-2c80227339538154ad0869e746f52db805325589.tar.gz fork-ledger-2c80227339538154ad0869e746f52db805325589.tar.bz2 fork-ledger-2c80227339538154ad0869e746f52db805325589.zip |
Added basic foundation for XML reporting
Diffstat (limited to 'src/amount.cc')
-rw-r--r-- | src/amount.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/amount.cc b/src/amount.cc index 8c78a86c..456ef8cf 100644 --- a/src/amount.cc +++ b/src/amount.cc @@ -1125,6 +1125,19 @@ bool amount_t::valid() const return true; } +void to_xml(std::ostream& out, const amount_t& amt) +{ + push_xml x(out, "amount"); + + if (amt.has_commodity()) + to_xml(out, amt.commodity()); + + { + push_xml y(out, "number"); + out << amt.number(); + } +} + #if defined(HAVE_BOOST_SERIALIZATION) template<class Archive> |