| 302 | class SquareMatrix : public Matrix { |
| 303 | public: |
| 304 | explicit SquareMatrix(py::ssize_t n) : Matrix(n, n) {} |
| 305 | }; |
| 306 | // Derived classes inherit the buffer protocol and the buffer access function |
| 307 | py::class_<SquareMatrix, Matrix>(m, "SquareMatrix").def(py::init<py::ssize_t>()); |
no outgoing calls
no test coverage detected