I have a very simple cpp file uses pybind11:
//example.cpp namespace py = pybind11; void foo(int *i) { (*i)++; } PYBIND11