ledger/qif.h
John Wiegley 4aea9709bb Made several changes to the parsing infrastructure to allow passing
the "config_t" object around.  This is needed for parsing option
settings in the initialization file.
2008-04-13 02:41:23 -04:00

22 lines
418 B
C++

#ifndef _QIF_H
#define _QIF_H
#include "parser.h"
namespace ledger {
class qif_parser_t : public parser_t
{
public:
virtual bool test(std::istream& in) const;
virtual unsigned int parse(std::istream& in,
config_t& config,
journal_t * journal,
account_t * master = NULL,
const std::string * original_file = NULL);
};
} // namespace ledger
#endif // _QIF_H