////////////////////////////////////////////////////////////////////////// CopyTo -- note that this does not remove anything from the queue //////////////////////////////////////////////////////////////////////////
| 193 | // CopyTo -- note that this does not remove anything from the queue |
| 194 | /////////////////////////////////////////////////////////////////////////////// |
| 195 | void cByteQueue::CopyTo(BufferedTransformation& target) const |
| 196 | { |
| 197 | for (cByteQueueNode* current = head; current; current = current->next) |
| 198 | current->CopyTo(target); |
| 199 | } |
| 200 | |
| 201 | void cByteQueue::CopyTo(byte* target) const |
| 202 | { |
nothing calls this directly
no test coverage detected