diff options
author | John Wiegley <johnw@newartisans.com> | 2005-02-09 09:47:18 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 02:40:55 -0400 |
commit | 193a801c03f27d5888d6e7347c18fbc925b72f1d (patch) | |
tree | e509fdc72bcfb4d8f72290a2081a0568d7924fbc /py_eval.cc | |
parent | bbffd8632e2f70fd76533d02f338d1f3b618ca63 (diff) | |
download | fork-ledger-193a801c03f27d5888d6e7347c18fbc925b72f1d.tar.gz fork-ledger-193a801c03f27d5888d6e7347c18fbc925b72f1d.tar.bz2 fork-ledger-193a801c03f27d5888d6e7347c18fbc925b72f1d.zip |
Added preliminary support for OFX, using libofx. Needs much
real-world testing.
Diffstat (limited to 'py_eval.cc')
-rw-r--r-- | py_eval.cc | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -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(); @@ -44,6 +49,12 @@ void initialize_ledger_for_python() #ifdef READ_GNUCASH export_gnucash(); #endif +#ifdef HAVE_XMLPARSE + export_xml(); +#endif +#ifdef HAVE_LIBOFX + export_ofx(); +#endif export_option(); export_config(); export_walk(); |