summaryrefslogtreecommitdiff
path: root/reconcile.cc
diff options
context:
space:
mode:
Diffstat (limited to 'reconcile.cc')
-rw-r--r--reconcile.cc20
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