| 15 | #include "PyWrapperMacro.h" |
| 16 | |
| 17 | class PywGMutable : public CGraph::GMutable { |
| 18 | public: |
| 19 | explicit PywGMutable(const CGraph::GElementPtrArr& elements = CGraph::GElementPtrArr{}) { |
| 20 | __addGElements_4py(elements); |
| 21 | } |
| 22 | ~PywGMutable() override = default; |
| 23 | |
| 24 | CStatus reshape(CGraph::GElementPtrArr& elements) override { |
| 25 | PYBIND11_OVERLOAD_PURE(CStatus, PywGMutable, reshape, elements); |
| 26 | } |
| 27 | }; |
| 28 | |
| 29 | PYCGRAPH_DECLARE_GGROUP_INTERFACE_CLASS(PywGMutable, |
| 30 | CStatus reshape(CGraph::GElementPtrArr& elements) override { |
nothing calls this directly
no outgoing calls
no test coverage detected