diff options
author | John Wiegley <johnw@newartisans.com> | 2008-07-26 04:08:55 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-07-26 04:08:55 -0400 |
commit | 961b30926b3b9f2b3e9c1a99df3f25fea6b13118 (patch) | |
tree | f0f5efcc0b63f337c4838b8aad46dea2cd7926e4 /xml.h | |
parent | ee396957226e2273bc60ede7192c27038c432f24 (diff) | |
download | fork-ledger-961b30926b3b9f2b3e9c1a99df3f25fea6b13118.tar.gz fork-ledger-961b30926b3b9f2b3e9c1a99df3f25fea6b13118.tar.bz2 fork-ledger-961b30926b3b9f2b3e9c1a99df3f25fea6b13118.zip |
--verify works again, but the memory totals at the end still need work.
Diffstat (limited to 'xml.h')
-rw-r--r-- | xml.h | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -25,13 +25,20 @@ class xml_parser_t : public parser_t class format_xml_entries : public format_entries { bool show_totals; - public: + + format_xml_entries(); + +public: format_xml_entries(std::ostream& output_stream, const bool _show_totals = false) : format_entries(output_stream, ""), show_totals(_show_totals) { + TRACE_CTOR(format_xml_entries, "std::ostream&, const bool"); output_stream << "<?xml version=\"1.0\"?>\n" << "<ledger version=\"2.5\">\n"; } + virtual ~format_xml_entries() throw() { + TRACE_DTOR(format_xml_entries); + } virtual void flush() { format_entries::flush(); |