MCPcopy Create free account
hub / github.com/Codeya-IDE/deepin-ide / Patch

Class Patch

3rdparty/diff-match-patch/diff_match_patch.h:103–117  ·  view source on GitHub ↗

* Class representing one patch operation. */

Source from the content-addressed store, hash-verified

101* Class representing one patch operation.
102*/
103class Patch {
104public:
105 QList<Diff> diffs;
106 int start1;
107 int start2;
108 int length1;
109 int length2;
110
111 /**
112 * Constructor. Initializes with an empty list of diffs.
113 */
114 Patch();
115 bool isNull() const;
116 QString toString();
117};
118
119
120/**

Callers 3

foreachFunction · 0.85
patch_splitMaxMethod · 0.85
patch_fromTextMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected