diff options
Diffstat (limited to 'binary.h')
-rw-r--r-- | binary.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/binary.h b/binary.h deleted file mode 100644 index 4b362faa..00000000 --- a/binary.h +++ /dev/null @@ -1,25 +0,0 @@ -#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); - -} // namespace ledger - -#endif // _BINARY_H |