diff options
Diffstat (limited to 'ofx.cc')
-rw-r--r-- | ofx.cc | 19 |
1 files changed, 0 insertions, 19 deletions
@@ -220,22 +220,3 @@ unsigned int ofx_parser_t::parse(std::istream& in, } } // namespace ledger - -#ifdef USE_BOOST_PYTHON - -#include <boost/python.hpp> - -using namespace boost::python; -using namespace ledger; - -BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(ofx_parse_overloads, - ofx_parser_t::parse, 2, 4) - -void export_ofx() { - class_< ofx_parser_t, bases<parser_t> > ("OfxParser") - .def("test", &ofx_parser_t::test) - .def("parse", &ofx_parser_t::parse, ofx_parse_overloads()) - ; -} - -#endif // USE_BOOST_PYTHON |