fix problems instantiating mussa.GlSequence
[mussa.git] / py / module.cpp
1 #include <boost/python.hpp>
2 using namespace boost::python;
3
4 void export_annotation_colors();
5 void export_conserved_path();
6 void export_glsequence();
7 void export_mussa();
8 void export_nway_paths();
9 void export_sequence();
10 void export_mussa_window();
11
12 BOOST_PYTHON_MODULE(mussa)
13 {
14   export_annotation_colors();
15   export_conserved_path();
16   export_glsequence();
17   export_mussa();
18   export_nway_paths();
19   export_sequence();
20   export_mussa_window();
21 }