| 94 | // ******************************************************** |
| 95 | |
| 96 | ByteQueue::ByteQueue(unsigned int nodeSize) |
| 97 | : nodeSize(nodeSize) |
| 98 | { |
| 99 | head = tail = new ByteQueueNode(nodeSize); |
| 100 | } |
| 101 | |
| 102 | ByteQueue::ByteQueue(const ByteQueue ©) |
| 103 | { |
nothing calls this directly
no outgoing calls
no test coverage detected