summaryrefslogtreecommitdiff
path: root/binary.h
diff options
context:
space:
mode:
Diffstat (limited to 'binary.h')
-rw-r--r--binary.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/binary.h b/binary.h
new file mode 100644
index 00000000..3fade8fe
--- /dev/null
+++ b/binary.h
@@ -0,0 +1,26 @@
+#ifndef _BINARY_H
+#define _BINARY_H
+
+#include "journal.h"
+#include "parser.h"
+
+namespace ledger {
+
+class binary_parser_t : public parser_t
+{
+ public:
+ virtual bool test(std::istream& in) const;
+
+ virtual unsigned int parse(std::istream& in,
+ journal_t * journal,
+ account_t * master = NULL,
+ const std::string * original_file = NULL);
+};
+
+void write_binary_journal(std::ostream& out,
+ journal_t * journal,
+ strings_list * files = NULL);
+
+} // namespace ledger
+
+#endif // _BINARY_H