WhatsThis update
[mussa.git] / py / module.cpp
index 1f6fd0280150cce15b0dbc2e7a31c7cf2860dd4c..1c6082551f6c5788371317f1f3b9fb48d7145b0f 100644 (file)
@@ -1,17 +1,25 @@
 #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)
 {
+  export_annot();
+  export_annotation_colors();
   export_conserved_path();
+  export_flps();
   export_glsequence();
   export_mussa();
   export_nway_paths();
   export_sequence();
+  //export_mussa_window();
 }