An iterator traversing a single row of a patch
| 138 | |
| 139 | // An iterator traversing a single row of a patch |
| 140 | class SinglePatchRowIterator : |
| 141 | public SinglePatchRowIteratorBase |
| 142 | { |
| 143 | public: |
| 144 | SinglePatchRowIterator(IPatch& patch, std::size_t row) : |
| 145 | SinglePatchRowIteratorBase(patch, static_cast<int>(row), 0, +1) |
| 146 | {} |
| 147 | }; |
| 148 | |
| 149 | // An iterator traversing a single row of a patch in reverse order (starting from the highest column) |
| 150 | class SinglePatchRowReverseIterator : |
no outgoing calls
no test coverage detected