You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
284 B
14 lines
284 B
#include <string>
|
|
#include <pybind11/pybind11.h>
|
|
|
|
using namespace std;
|
|
|
|
string testfunc() {
|
|
return "fsdfg";
|
|
}
|
|
|
|
PYBIND11_MODULE(_pybind, m) {
|
|
m.doc() = "pybind11 example plugin"; // optional module docstring
|
|
m.def("add", &testfunc, "A function which adds two numbers");
|
|
}
|
|
|
|
|