| 105 | { |
| 106 | public: |
| 107 | WrapLineCacheData() = default; |
| 108 | WrapLineCacheData(qint32 d3LineIdx, qint32 textStart, qint32 textLength): |
| 109 | m_d3LineIdx(d3LineIdx), m_textStart(textStart), m_textLength(textLength) {} |
| 110 | [[nodiscard]] qint32 d3LineIdx() const { return m_d3LineIdx; } |
nothing calls this directly
no outgoing calls
no test coverage detected