summaryrefslogtreecommitdiff
path: root/gnucash.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2004-08-20 02:51:14 -0400
committerJohn Wiegley <johnw@newartisans.com>2004-08-20 02:51:14 -0400
commit19de076b4d2419411363c82d216e6b71ff96b18a (patch)
treed23875db0632c91ab8df38b33404335196d25a15 /gnucash.h
parent3934d558e120f15f481daf4083b1e91918fb7495 (diff)
downloadfork-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.h21
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