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

Method dump

src/diff.cpp:1651–1670  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1649}
1650
1651void Diff3LineList::dump()
1652{
1653 QTextStream out(stdout);
1654 quint32 i = 1;
1655 out << "---begin----\n";
1656 for(const Diff3Line &diffRec : *this)
1657 {
1658 out << "line = " << i<< "\n";
1659 out << "lineA = " << diffRec.getLineA()<< "\n";
1660 out << "lineB = " << diffRec.getLineB()<< "\n";
1661 out << "lineC = " << diffRec.getLineC()<< "\n";
1662
1663 out << "isEqualAB = " << diffRec.isEqualAB()<< "\n";
1664 out << "isEqualAC = " << diffRec.isEqualAC()<< "\n";
1665 out << "isEqualBC = " << diffRec.isEqualBC()<< "\n";
1666 ++i;
1667 }
1668
1669 out << "---end----\n";
1670}

Callers

nothing calls this directly

Calls 6

getLineAMethod · 0.80
getLineBMethod · 0.80
getLineCMethod · 0.80
isEqualABMethod · 0.45
isEqualACMethod · 0.45
isEqualBCMethod · 0.45

Tested by

no test coverage detected