| 37 | : wnd(window), _r(-1), _c(-1), _cmap(AF_COLORMAP_DEFAULT) {} |
| 38 | |
| 39 | Window::~Window() { |
| 40 | // THOU SHALL NOT THROW IN DESTRUCTORS |
| 41 | if (wnd) { af_destroy_window(wnd); } |
| 42 | } |
| 43 | |
| 44 | // NOLINTNEXTLINE(readability-make-member-function-const) |
| 45 | void Window::setPos(const unsigned x, const unsigned y) { |
nothing calls this directly
no test coverage detected