basic wrapping of Annotations
[mussa.git] / py / module.cpp
index a36c573e1ae1b26c1096f1b7318b87afb63157e3..cd98f04fc602770c0849bcd65e2e6d6615b56626 100644 (file)
@@ -1,25 +1,32 @@
+#include "stl_container_adapter.hpp"
 #include <boost/python.hpp>
-using namespace boost::python;
 
+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();
 void export_mussa();
 void export_nway_paths();
+void export_seq_span();
 void export_sequence();
 void export_mussa_window();
 
 BOOST_PYTHON_MODULE(mussa)
 {
+  export_container_exceptions();
+  export_alphabet();
   export_annot();
   export_annotation_colors();
+  export_annotations();
   export_conserved_path();
   export_flps();
+  export_seq_span();
   export_sequence();
   export_glsequence();
   export_mussa();
   export_nway_paths();
-  //export_mussa_window();
 }