#include <iostream>
#include <boost/python.hpp>
#include "Publisher.hh"
+#include <QDesktopServices>
//#include "PythonPublisher.mpp"
#define prefix_
py::class_<PublisherPyWrapper, boost::noncopyable>("Publisher")
.def("publish", py::pure_virtual(&pykit::Publisher::publish))
;
+
+ py::def("openUrl", &QDesktopServices::openUrl);
}
PYTHON_EXTERN_MODULE(_httpapi);