add prototype wrapping of the qt sequence browser
[mussa.git] / py / module.cpp
index 9f3a1452866bbb7fdf038494f298952f613e4284..9b5d54f5c063508df721409a16951c54ee33e066 100644 (file)
@@ -1,19 +1,24 @@
 #include <boost/python.hpp>
 using namespace boost::python;
 
+void export_annot();
+void export_annotation_colors();
 void export_conserved_path();
+void export_flps();
 void export_glsequence();
 void export_mussa();
 void export_nway_paths();
 void export_sequence();
 void export_mussa_window();
 
-BOOST_PYTHON_MODULE(_mussa)
+BOOST_PYTHON_MODULE(mussa)
 {
+  export_annot();
+  export_annotation_colors();
   export_conserved_path();
+  export_flps();
+  export_sequence();
   export_glsequence();
   export_mussa();
   export_nway_paths();
-  export_sequence();
-  export_mussa_window();
 }