diff options
author | John Wiegley <johnw@newartisans.com> | 2006-02-15 20:10:49 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 02:41:21 -0400 |
commit | ce3491c99f089874725999ca6d8b1fb6a15c9e5e (patch) | |
tree | c48a2bf19a954c8103a02e26f9a1a490b8095268 /reconcile.cc | |
parent | 2eafddc91b8d7f0b7bdfd991acdc9e0b2295e304 (diff) | |
download | fork-ledger-ce3491c99f089874725999ca6d8b1fb6a15c9e5e.tar.gz fork-ledger-ce3491c99f089874725999ca6d8b1fb6a15c9e5e.tar.bz2 fork-ledger-ce3491c99f089874725999ca6d8b1fb6a15c9e5e.zip |
Removed Python integration support.
Diffstat (limited to 'reconcile.cc')
-rw-r--r-- | reconcile.cc | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/reconcile.cc b/reconcile.cc index b28718ee..ec893c0b 100644 --- a/reconcile.cc +++ b/reconcile.cc @@ -86,23 +86,3 @@ void reconcile_transactions::flush() } } // namespace ledger - -#ifdef USE_BOOST_PYTHON - -#include <boost/python.hpp> - -using namespace boost::python; -using namespace ledger; - -void export_reconcile() -{ - class_< reconcile_transactions, bases<item_handler<transaction_t> > > - ("ReconcileTransactions", - init<item_handler<transaction_t> *, const value_t&, time_t>() - [with_custodian_and_ward<1, 2>()]) - .def("flush", &reconcile_transactions::flush) - .def("__call__", &reconcile_transactions::operator()) - ; -} - -#endif // USE_BOOST_PYTHON |