| 34 | { } |
| 35 | |
| 36 | bool |
| 37 | CellView::operator== (const CellView &cv) const |
| 38 | { |
| 39 | return m_layout_href == cv.m_layout_href |
| 40 | && mp_ctx_cell == cv.mp_ctx_cell && m_ctx_cell_index == cv.m_ctx_cell_index |
| 41 | && mp_cell == cv.mp_cell && m_cell_index == cv.m_cell_index |
| 42 | && m_unspecific_path == cv.m_unspecific_path && m_specific_path == cv.m_specific_path; |
| 43 | } |
| 44 | |
| 45 | bool |
| 46 | CellView::is_valid () const |
nothing calls this directly
no test coverage detected