summaryrefslogtreecommitdiff
path: root/python.cc
blob: 36d80c7c6b0e964242e8dc974a25bde372894bc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include <boost/python.hpp>

using namespace boost::python;

#include "ledger.h"
#include "acconf.h"

static struct cleanup_ledger_t {
  ~cleanup_ledger_t() {
    ledger::shutdown();
  }
} _cleanup_ledger;

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

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
  ledger::initialize();
}