summaryrefslogtreecommitdiff
path: root/binary.h
diff options
context:
space:
mode:
Diffstat (limited to 'binary.h')
-rw-r--r--binary.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/binary.h b/binary.h
deleted file mode 100644
index d57888a5..00000000
--- a/binary.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef _BINARY_H
-#define _BINARY_H
-
-#include "journal.h"
-#include "parser.h"
-
-#include <deque>
-
-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