Inlined the print_xacts constructor
This commit is contained in:
parent
d6a559959c
commit
17b29a6378
2 changed files with 4 additions and 8 deletions
|
|
@ -40,13 +40,6 @@
|
||||||
|
|
||||||
namespace ledger {
|
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 {
|
namespace {
|
||||||
void print_note(std::ostream& out,
|
void print_note(std::ostream& out,
|
||||||
const string& note,
|
const string& note,
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,10 @@ protected:
|
||||||
bool first_title;
|
bool first_title;
|
||||||
|
|
||||||
public:
|
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() {
|
virtual ~print_xacts() {
|
||||||
TRACE_DTOR(print_xacts);
|
TRACE_DTOR(print_xacts);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue