Store Sequence sequence location in a shared_ptr class
[mussa.git] / py / MussaWindow.cpp
1 #include <boost/python.hpp>
2
3 #include "qui/threading/GuiProxy.hpp"
4
5 using namespace boost::python;
6
7 void export_gui_proxy()
8 {
9   def("MussaWindow", &MussaWindowProxy, 
10       "Create mussa window, DO NOT access the mussa analysis after passing it to this function "
11       "the mussa analysis object is NOT thread safe.");
12 }