40 lines
722 B
C++
40 lines
722 B
C++
#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();
|
|
void export_walk();
|
|
void export_format();
|
|
void export_datetime();
|
|
|
|
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();
|
|
export_walk();
|
|
export_format();
|
|
export_datetime();
|
|
}
|