There can be only one (filename convention)
[mussa.git] / py / module.cpp
1 #include <boost/python.hpp>
2 using namespace boost::python;
3
4 void export_conserved_path();
5 void export_glsequence();
6 void export_mussa();
7 void export_nway_paths();
8 void export_sequence();
9
10 BOOST_PYTHON_MODULE(mussa)
11 {
12   export_conserved_path();
13   export_glsequence();
14   export_mussa();
15   export_nway_paths();
16   export_sequence();
17 }