minimally wrap drawable
[mussa.git] / py / module.cpp
1 #include "stl_container_adapter.hpp"
2 #include <boost/python.hpp>
3
4 void export_alphabet();
5 void export_annot();
6 void export_annotation_colors();
7 void export_annotations();
8 void export_container_exceptions();
9 void export_conserved_path();
10 void export_drawable();
11 void export_flps();
12 void export_glsequence();
13 void export_mussa();
14 void export_nway_paths();
15 void export_seq_span();
16 void export_sequence();
17 void export_mussa_window();
18
19 BOOST_PYTHON_MODULE(mussa)
20 {
21   export_container_exceptions();
22   export_alphabet();
23   export_annot();
24   export_annotation_colors();
25   export_annotations();
26   export_conserved_path();
27   export_drawable();
28   export_flps();
29   export_seq_span();
30   export_sequence();
31   export_glsequence();
32   export_mussa();
33   export_nway_paths();
34 }