ledger/binary.h
John Wiegley f19aeb6d44 fixes
2004-08-19 22:05:22 -04:00

25 lines
503 B
C++

#ifndef _BINARY_H
#define _BINARY_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