diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-03 12:21:54 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-03 12:22:10 -0400 |
commit | 3434650848e500d605447388ef7e069ee1515b72 (patch) | |
tree | da05e1bc5dbf5ef321d258f524518e9631dc7574 /src/expr.cc | |
parent | 9bdcbffb150387d64e7eff630aaad84fb0d696b1 (diff) | |
download | fork-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/expr.cc')
-rw-r--r-- | src/expr.cc | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/expr.cc b/src/expr.cc index e71abfd2..da45bb82 100644 --- a/src/expr.cc +++ b/src/expr.cc @@ -182,16 +182,6 @@ void expr_t::dump(std::ostream& out) const if (ptr) ptr->dump(out, 0); } -void expr_t::read(const char *& data) -{ - if (ptr) ptr->read(data); -} - -void expr_t::write(std::ostream& out) const -{ - if (ptr) ptr->write(out); -} - void expr_t::initialize() { parser.reset(new expr_t::parser_t); |