| 49 | explicit cByteQueueNode(unsigned int maxSize); |
| 50 | |
| 51 | unsigned int CurrentSize() const |
| 52 | { |
| 53 | return tail - head; |
| 54 | } |
| 55 | unsigned int UsedUp() const |
| 56 | { |
| 57 | return (head == MaxSize()); |
nothing calls this directly
no outgoing calls
no test coverage detected