There can be only one (filename convention)
[mussa.git] / py / module.cpp
diff --git a/py/module.cpp b/py/module.cpp
new file mode 100644 (file)
index 0000000..1f6fd02
--- /dev/null
@@ -0,0 +1,17 @@
+#include <boost/python.hpp>
+using namespace boost::python;
+
+void export_conserved_path();
+void export_glsequence();
+void export_mussa();
+void export_nway_paths();
+void export_sequence();
+
+BOOST_PYTHON_MODULE(mussa)
+{
+  export_conserved_path();
+  export_glsequence();
+  export_mussa();
+  export_nway_paths();
+  export_sequence();
+}