diff options
Diffstat (limited to 'entry.h')
-rw-r--r-- | entry.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -39,8 +39,6 @@ namespace ledger { class journal_t; -typedef std::list<xact_t *> xacts_list; - class entry_base_t : public supports_flags<> { public: @@ -232,6 +230,10 @@ inline bool auto_entry_finalizer_t::operator()(entry_t& entry, bool post) { return true; } +typedef std::list<entry_t *> entries_list; +typedef std::list<auto_entry_t *> auto_entries_list; +typedef std::list<period_entry_t *> period_entries_list; + } // namespace ledger #endif // _ENTRY_H |