add prototype wrapping of the qt sequence browser
[mussa.git] / py / module.cpp
1 #include <boost/python.hpp>
2 using namespace boost::python;
3
4 void export_annot();
5 void export_annotation_colors();
6 void export_conserved_path();
7 void export_flps();
8 void export_glsequence();
9 void export_mussa();
10 void export_nway_paths();
11 void export_sequence();
12 void export_mussa_window();
13
14 BOOST_PYTHON_MODULE(mussa)
15 {
16   export_annot();
17   export_annotation_colors();
18   export_conserved_path();
19   export_flps();
20   export_sequence();
21   export_glsequence();
22   export_mussa();
23   export_nway_paths();
24 }