From 961b30926b3b9f2b3e9c1a99df3f25fea6b13118 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sat, 26 Jul 2008 04:08:55 -0400 Subject: --verify works again, but the memory totals at the end still need work. --- xml.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'xml.h') diff --git a/xml.h b/xml.h index 7eee932a..ad2a19ff 100644 --- a/xml.h +++ b/xml.h @@ -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 << "\n" << "\n"; } + virtual ~format_xml_entries() throw() { + TRACE_DTOR(format_xml_entries); + } virtual void flush() { format_entries::flush(); -- cgit v1.2.3