| 65 | struct DocstringTestFoo { |
| 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") |
nothing calls this directly
no outgoing calls
no test coverage detected