From 193a801c03f27d5888d6e7347c18fbc925b72f1d Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 9 Feb 2005 09:47:18 +0000 Subject: Added preliminary support for OFX, using libofx. Needs much real-world testing. --- py_eval.cc | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'py_eval.cc') diff --git a/py_eval.cc b/py_eval.cc index 2b68de16..13afcb1e 100644 --- a/py_eval.cc +++ b/py_eval.cc @@ -19,10 +19,15 @@ void export_parser(); void export_textual(); void export_binary(); void export_qif(); -#ifdef HAVE_XMLPARSE +#ifdef READ_GNUCASH void export_gnucash(); +#endif +#ifdef HAVE_XMLPARSE void export_xml(); #endif +#ifdef HAVE_LIBOFX +void export_ofx(); +#endif void export_option(); void export_config(); void export_walk(); @@ -43,6 +48,12 @@ void initialize_ledger_for_python() export_qif(); #ifdef READ_GNUCASH export_gnucash(); +#endif +#ifdef HAVE_XMLPARSE + export_xml(); +#endif +#ifdef HAVE_LIBOFX + export_ofx(); #endif export_option(); export_config(); -- cgit v1.2.3