forked from benjaminjack/python_cpp_example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbindings.cpp
More file actions
31 lines (23 loc) · 665 Bytes
/
bindings.cpp
File metadata and controls
31 lines (23 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <pybind11/pybind11.h>
#include "math.hpp"
namespace py = pybind11;
PYBIND11_PLUGIN(python_cpp_example) {
py::module m("python_cpp_example", R"doc(
Python module
-----------------------
.. currentmodule:: python_cpp_example
.. autosummary::
:toctree: _generate
add
subtract
)doc");
m.def("add", &add, R"doc(
Add two numbers
Some other information about the add function.
)doc");
m.def("subtract", &subtract, R"doc(
Subtract two numbers
Some other information about the subtract function.
)doc");
return m.ptr();
}