diff options
author | John Wiegley <johnw@newartisans.com> | 2007-04-15 11:17:00 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:35:32 -0400 |
commit | 479dd85da543b7af8e5f888ff2f2beaf6ff6923b (patch) | |
tree | 7a447b52ab366c1f5a9399f9365a45b0879305b4 /pyledger.cc | |
parent | 0ef82600e5978495cccb4eed63b1de7094deab04 (diff) | |
download | ledger-479dd85da543b7af8e5f888ff2f2beaf6ff6923b.tar.gz ledger-479dd85da543b7af8e5f888ff2f2beaf6ff6923b.tar.bz2 ledger-479dd85da543b7af8e5f888ff2f2beaf6ff6923b.zip |
Miscellaneous changes
Diffstat (limited to 'pyledger.cc')
-rw-r--r-- | pyledger.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyledger.cc b/pyledger.cc index 27d06776..8c9a249d 100644 --- a/pyledger.cc +++ b/pyledger.cc @@ -1,10 +1,10 @@ #include <boost/python.hpp> -using namespace boost::python; +#include "py_eval.h" -void initialize_ledger_for_python(); +using namespace boost::python; BOOST_PYTHON_MODULE(ledger) { - initialize_ledger_for_python(); + ledger::initialize_ledger_for_python(); } |