summaryrefslogtreecommitdiff
path: root/main.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2008-07-29 21:05:08 -0400
committerJohn Wiegley <johnw@newartisans.com>2008-07-29 21:05:08 -0400
commit42e1d725aa9deb41396ba4c73c8499c7c3798508 (patch)
tree709aded6962addc668a127a0392aec739d74f750 /main.cc
parentea27d1b45a5ff975a1e90e3e9f4b74ff8d34056e (diff)
downloadfork-ledger-42e1d725aa9deb41396ba4c73c8499c7c3798508.tar.gz
fork-ledger-42e1d725aa9deb41396ba4c73c8499c7c3798508.tar.bz2
fork-ledger-42e1d725aa9deb41396ba4c73c8499c7c3798508.zip
The next value expression scheme is working, but the individual accessor
functions for each of the journal objects has yet to be ported.
Diffstat (limited to 'main.cc')
-rw-r--r--main.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.cc b/main.cc
index 6dfe4004..c998b20c 100644
--- a/main.cc
+++ b/main.cc
@@ -51,6 +51,8 @@ namespace ledger {
var_t<report_t> report(args, 0);
var_t<std::ostream> ostream(args, 1);
+ std::cout << "Hello, world!" << std::endl;
+
report->xacts_report
(xact_handler_ptr(new format_xacts
(*ostream, report->session.register_format)));