basic wrapping of Annotations
[mussa.git] / py / module.cpp
index 84564273e81e6862f1865ec22e0cd33675579aa3..cd98f04fc602770c0849bcd65e2e6d6615b56626 100644 (file)
@@ -1,10 +1,11 @@
-#include <boost/python.hpp>
 #include "stl_container_adapter.hpp"
-using namespace boost::python;
+#include <boost/python.hpp>
 
 void export_alphabet();
 void export_annot();
 void export_annotation_colors();
+void export_annotations();
+void export_container_exceptions();
 void export_conserved_path();
 void export_flps();
 void export_glsequence();
@@ -16,11 +17,11 @@ void export_mussa_window();
 
 BOOST_PYTHON_MODULE(mussa)
 {
-  boost::python::register_exception_translator<IndexError>(&translate);
-
+  export_container_exceptions();
   export_alphabet();
   export_annot();
   export_annotation_colors();
+  export_annotations();
   export_conserved_path();
   export_flps();
   export_seq_span();