add prototype wrapping of the qt sequence browser
[mussa.git] / py / module_qui.cpp
1 #include <boost/python.hpp>
2 using namespace boost::python;
3
4 void export_sequence();
5 void export_glsequence();
6 void export_annotation_colors();
7 void export_qt();
8 void export_sequencebrowserwidget();
9
10 BOOST_PYTHON_MODULE(mussaqui)
11 {
12   export_sequence();
13   export_glsequence();
14   export_annotation_colors();
15   export_qt();
16   export_sequencebrowserwidget();
17 }