* Class representing one patch operation. */
| 101 | * Class representing one patch operation. |
| 102 | */ |
| 103 | class Patch { |
| 104 | public: |
| 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 | /** |
no outgoing calls
no test coverage detected