40 lines
718 B
C++
40 lines
718 B
C++
#include <pybind11/pybind11.h>
|
|
|
|
int add(int i, int j) {
|
|
return i + j;
|
|
}
|
|
|
|
int subtract(int i, int j) {
|
|
return i - j;
|
|
}
|
|
|
|
namespace py = pybind11;
|
|
|
|
PYBIND11_PLUGIN(pbtest) {
|
|
py::module m("pbtest", R"pbdoc(
|
|
Pybind11 example plugin
|
|
-----------------------
|
|
|
|
.. currentmodule:: pbtest
|
|
|
|
.. autosummary::
|
|
:toctree: _generate
|
|
|
|
add
|
|
subtract
|
|
)pbdoc");
|
|
|
|
m.def("add", &add, R"pbdoc(
|
|
Add two numbers
|
|
|
|
Some other explanation about the add function.
|
|
)pbdoc");
|
|
|
|
m.def("subtract", &subtract, R"pbdoc(
|
|
Subtract two numbers
|
|
|
|
Some other explanation about the subtract function.
|
|
)pbdoc");
|
|
|
|
return m.ptr();
|
|
}
|