summaryrefslogtreecommitdiff
path: root/src/balpair.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-03 12:21:54 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-03 12:22:10 -0400
commit3434650848e500d605447388ef7e069ee1515b72 (patch)
treeda05e1bc5dbf5ef321d258f524518e9631dc7574 /src/balpair.cc
parent9bdcbffb150387d64e7eff630aaad84fb0d696b1 (diff)
downloadfork-ledger-3434650848e500d605447388ef7e069ee1515b72.tar.gz
fork-ledger-3434650848e500d605447388ef7e069ee1515b72.tar.bz2
fork-ledger-3434650848e500d605447388ef7e069ee1515b72.zip
Removed the binary caching code, and the XML, QIF and Gnucash parsers.
Diffstat (limited to 'src/balpair.cc')
-rw-r--r--src/balpair.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/balpair.cc b/src/balpair.cc
index 40d9b9ef..822460b3 100644
--- a/src/balpair.cc
+++ b/src/balpair.cc
@@ -53,15 +53,4 @@ balance_pair_t::value(const optional<datetime_t>& moment,
return none;
}
-void balance_pair_t::write_xml(std::ostream& out, const int depth) const
-{
- out << xml_str("<balance-pair>\n", depth);
-
- quantity().write_xml(out, depth + 1);
- if (cost)
- cost->write_xml(out, depth + 1);
-
- out << xml_str("</balance-pair>\n", depth);
-}
-
} // namespace ledger