Inlined the print_xacts constructor

This commit is contained in:
John Wiegley 2010-06-02 03:36:09 -04:00
parent d6a559959c
commit 17b29a6378
2 changed files with 4 additions and 8 deletions

View file

@ -40,13 +40,6 @@
namespace ledger {
print_xacts::print_xacts(report_t& _report,
bool _print_raw)
: report(_report), print_raw(_print_raw), first_title(true)
{
TRACE_CTOR(print_xacts, "report&, bool");
}
namespace {
void print_note(std::ostream& out,
const string& note,

View file

@ -65,7 +65,10 @@ protected:
bool first_title;
public:
print_xacts(report_t& _report, bool _print_raw = false);
print_xacts(report_t& _report, bool _print_raw = false)
: report(_report), print_raw(_print_raw), first_title(true) {
TRACE_CTOR(print_xacts, "report&, bool");
}
virtual ~print_xacts() {
TRACE_DTOR(print_xacts);
}