From 29fec4dad9428683fe317c4f897ef1d35b2606ba Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sun, 30 Oct 2011 21:33:37 +0000 Subject: [PATCH] expose settings presets to python --- bindings/python/src/session.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bindings/python/src/session.cpp b/bindings/python/src/session.cpp index 9c6fb8fcb..54e887945 100644 --- a/bindings/python/src/session.cpp +++ b/bindings/python/src/session.cpp @@ -600,6 +600,8 @@ void bind_session() .def("settings", &get_feed_settings) ; - register_ptr_to_python >(); + + def("high_performance_seed", high_performance_seed); + def("min_memory_usage", high_performance_seed); }