summaryrefslogtreecommitdiff
path: root/ofx.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2006-02-15 20:10:49 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 02:41:21 -0400
commitce3491c99f089874725999ca6d8b1fb6a15c9e5e (patch)
treec48a2bf19a954c8103a02e26f9a1a490b8095268 /ofx.cc
parent2eafddc91b8d7f0b7bdfd991acdc9e0b2295e304 (diff)
downloadfork-ledger-ce3491c99f089874725999ca6d8b1fb6a15c9e5e.tar.gz
fork-ledger-ce3491c99f089874725999ca6d8b1fb6a15c9e5e.tar.bz2
fork-ledger-ce3491c99f089874725999ca6d8b1fb6a15c9e5e.zip
Removed Python integration support.
Diffstat (limited to 'ofx.cc')
-rw-r--r--ofx.cc19
1 files changed, 0 insertions, 19 deletions
diff --git a/ofx.cc b/ofx.cc
index 2e505558..731105a5 100644
--- a/ofx.cc
+++ b/ofx.cc
@@ -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