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