| 135 | } |
| 136 | |
| 137 | void ByteQueue::CopyTo(BufferedTransformation &target) const |
| 138 | { |
| 139 | for (ByteQueueNode *current=head; current; current=current->next) |
| 140 | current->CopyTo(target); |
| 141 | } |
| 142 | |
| 143 | void ByteQueue::CopyTo(byte *target) const |
| 144 | { |
nothing calls this directly
no test coverage detected