| 66 | int value; |
| 67 | void setValue(int v) { value = v; } |
| 68 | int getValue() const { return value; } |
| 69 | }; |
| 70 | py::class_<DocstringTestFoo>(m, "DocstringTestFoo", "This is a class docstring") |
| 71 | .def_property("value_prop", |
nothing calls this directly
no outgoing calls
no test coverage detected