From 3b112af3624b4ce6c4ffe3c0ec3fcba978f86217 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 9 Feb 2005 05:06:18 +0000 Subject: [PATCH] Added new "output" command. Likely not to be documented, as these are intended primarily for future GUI development. --- textual.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/textual.h b/textual.h index b2f0726f..5ea79d0c 100644 --- a/textual.h +++ b/textual.h @@ -2,6 +2,7 @@ #define _TEXTUAL_H #include "parser.h" +#include "walk.h" namespace ledger { @@ -21,6 +22,10 @@ class textual_parser_t : public parser_t transaction_t * parse_transaction_text(char * line, account_t * account); transaction_t * parse_transaction(std::istream& in, account_t * account); +void write_textual_journal(journal_t& journal, std::string path, + item_handler& formatter, + std::ostream& out); + } // namespace ledger #endif // _TEXTUAL_H