| 133 | } |
| 134 | |
| 135 | void internalAppend(ClumpletReader& w) |
| 136 | { |
| 137 | while (!isEof()) |
| 138 | { |
| 139 | moveNext(); |
| 140 | } |
| 141 | |
| 142 | for(w.rewind(); !w.isEof(); w.moveNext()) |
| 143 | { |
| 144 | SingleClumplet sc = w.getClumplet(); |
| 145 | sc.tag = sequence++; |
| 146 | insertClumplet(sc); |
| 147 | moveNext(); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | unsigned char sequence; |
| 152 | }; |
nothing calls this directly
no test coverage detected