diff options
Diffstat (limited to 'pyledger.cc')
-rw-r--r-- | pyledger.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pyledger.cc b/pyledger.cc new file mode 100644 index 00000000..27d06776 --- /dev/null +++ b/pyledger.cc @@ -0,0 +1,10 @@ +#include <boost/python.hpp> + +using namespace boost::python; + +void initialize_ledger_for_python(); + +BOOST_PYTHON_MODULE(ledger) +{ + initialize_ledger_for_python(); +} |