diff options
author | John Wiegley <johnw@newartisans.com> | 2004-08-20 02:51:14 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-08-20 02:51:14 -0400 |
commit | 19de076b4d2419411363c82d216e6b71ff96b18a (patch) | |
tree | d23875db0632c91ab8df38b33404335196d25a15 /gnucash.h | |
parent | 3934d558e120f15f481daf4083b1e91918fb7495 (diff) | |
download | fork-ledger-19de076b4d2419411363c82d216e6b71ff96b18a.tar.gz fork-ledger-19de076b4d2419411363c82d216e6b71ff96b18a.tar.bz2 fork-ledger-19de076b4d2419411363c82d216e6b71ff96b18a.zip |
updated gnucash support
Diffstat (limited to 'gnucash.h')
-rw-r--r-- | gnucash.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnucash.h b/gnucash.h new file mode 100644 index 00000000..6b71fffa --- /dev/null +++ b/gnucash.h @@ -0,0 +1,21 @@ +#ifndef _GNUCASH_H +#define _GNUCASH_H + +#include "parser.h" + +namespace ledger { + +class gnucash_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); +}; + +} // namespace ledger + +#endif // _GNUCASH_H |