| 124 | } |
| 125 | |
| 126 | void ByteQueue::Destroy() |
| 127 | { |
| 128 | ByteQueueNode *next; |
| 129 | |
| 130 | for (ByteQueueNode *current=head; current; current=next) |
| 131 | { |
| 132 | next=current->next; |
| 133 | delete current; |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | void ByteQueue::CopyTo(BufferedTransformation &target) const |
| 138 | { |
nothing calls this directly
no outgoing calls
no test coverage detected