MCPcopy Create free account
hub / github.com/KDE/kdiff3 / getLineData

Method getLineData

src/diff.h:228–241  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

226 const std::shared_ptr<LineDataVector> &pldA, const std::shared_ptr<LineDataVector> &pldB, const std::shared_ptr<LineDataVector> &pldC);
227
228 [[nodiscard]] inline std::shared_ptr<LineDataVector> getLineData(e_SrcSelector srcIndex) const
229 {
230 switch(srcIndex)
231 {
232 case e_SrcSelector::A:
233 return mLineDataA;
234 case e_SrcSelector::B:
235 return mLineDataB;
236 case e_SrcSelector::C:
237 return mLineDataC;
238 default:
239 return nullptr;
240 }
241 }
242};
243
244enum class IgnoreFlag

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected