diff options
Diffstat (limited to 'python.cc')
-rw-r--r-- | python.cc | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/python.cc b/python.cc deleted file mode 100644 index d469c2f3..00000000 --- a/python.cc +++ /dev/null @@ -1,34 +0,0 @@ -#include <boost/python.hpp> - -using namespace boost::python; - -#include "ledger.h" -#include "acconf.h" - -void export_amount(); -void export_balance(); -void export_value(); -void export_journal(); -void export_parser(); -void export_textual(); -void export_binary(); -void export_qif(); -#ifdef READ_GNUCASH -void export_gnucash(); -#endif -void export_option(); - -BOOST_PYTHON_MODULE(ledger) { - export_amount(); - export_balance(); - export_value(); - export_journal(); - export_parser(); - export_textual(); - export_binary(); - export_qif(); -#ifdef READ_GNUCASH - export_gnucash(); -#endif - export_option(); -} |