diff options
author | John Wiegley <johnw@newartisans.com> | 2012-03-01 05:50:07 -0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-03-01 05:50:07 -0600 |
commit | 9ec9cdf41e5176f7fcf06da5f75593d9ba3d4028 (patch) | |
tree | f9536d691ef7c5abea82349a0b58a5f5e3cf8e33 /src/session.h | |
parent | 944e580825f0d9ce060b6dcdffe8990b6c2cca20 (diff) | |
download | fork-ledger-9ec9cdf41e5176f7fcf06da5f75593d9ba3d4028.tar.gz fork-ledger-9ec9cdf41e5176f7fcf06da5f75593d9ba3d4028.tar.bz2 fork-ledger-9ec9cdf41e5176f7fcf06da5f75593d9ba3d4028.zip |
Started writing Python unit tests
Diffstat (limited to 'src/session.h')
-rw-r--r-- | src/session.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/session.h b/src/session.h index 54b9912a..38062b78 100644 --- a/src/session.h +++ b/src/session.h @@ -75,9 +75,11 @@ public: flush_on_next_data_file = truth; } + journal_t * read_journal(const path& pathname); + journal_t * read_journal_from_string(const string& data); std::size_t read_data(const string& master_account = ""); - void read_journal_files(); + journal_t * read_journal_files(); void close_journal_files(); value_t fn_account(call_scope_t& scope); |