diff options
Diffstat (limited to 'src/session.h')
-rw-r--r-- | src/session.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/session.h b/src/session.h index 597268ee..6de4b2dd 100644 --- a/src/session.h +++ b/src/session.h @@ -56,8 +56,7 @@ class session_t : public symbol_scope_t friend void set_session_context(session_t * session); public: - bool flush_on_next_data_file; - date_t::year_type current_year; + bool flush_on_next_data_file; std::auto_ptr<journal_t> journal; explicit session_t(); @@ -75,6 +74,11 @@ public: void close_journal_files(); value_t fn_account(call_scope_t& scope); + value_t fn_min(call_scope_t& scope); + value_t fn_max(call_scope_t& scope); + value_t fn_lot_price(call_scope_t& scope); + value_t fn_lot_date(call_scope_t& scope); + value_t fn_lot_tag(call_scope_t& scope); void report_options(std::ostream& out) { |