| 150 | } |
| 151 | |
| 152 | unsigned long ByteQueue::CurrentSize() const |
| 153 | { |
| 154 | unsigned long size=0; |
| 155 | |
| 156 | for (ByteQueueNode *current=head; current; current=current->next) |
| 157 | size += current->CurrentSize(); |
| 158 | |
| 159 | return size; |
| 160 | } |
| 161 | |
| 162 | void ByteQueue::Put(byte inByte) |
| 163 | { |
no outgoing calls
no test coverage detected