summaryrefslogtreecommitdiff
path: root/session.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2008-08-03 00:22:55 -0400
committerJohn Wiegley <johnw@newartisans.com>2008-08-03 00:22:55 -0400
commit363fb6d55823cb84f49735e795232837a40a4f0c (patch)
tree4849b4aa7f00709bcb920d0971de829492ee6907 /session.cc
parentdfc14dfff3dfc31e21ea7f11f9723de977d6c179 (diff)
downloadfork-ledger-363fb6d55823cb84f49735e795232837a40a4f0c.tar.gz
fork-ledger-363fb6d55823cb84f49735e795232837a40a4f0c.tar.bz2
fork-ledger-363fb6d55823cb84f49735e795232837a40a4f0c.zip
Got date, payee and accounts back into the register report.
Diffstat (limited to 'session.cc')
-rw-r--r--session.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/session.cc b/session.cc
index 68db4fd0..3bafd43c 100644
--- a/session.cc
+++ b/session.cc
@@ -30,6 +30,7 @@
*/
#include "session.h"
+#include "report.h"
#include "walk.h"
namespace ledger {
@@ -113,6 +114,11 @@ session_t::session_t()
TRACE_CTOR(session_t, "");
}
+session_t::~session_t()
+{
+ TRACE_DTOR(session_t);
+}
+
std::size_t session_t::read_journal(journal_t& journal,
std::istream& in,
const path& pathname,