| 208 | } |
| 209 | |
| 210 | unsigned long cByteQueue::CurrentSize() const |
| 211 | { |
| 212 | return mCurrentSize; |
| 213 | /* |
| 214 | unsigned long size=0; |
| 215 | |
| 216 | for (cByteQueueNode *current=head; current; current=current->next) |
| 217 | size += current->CurrentSize(); |
| 218 | |
| 219 | return size; |
| 220 | */ |
| 221 | } |
| 222 | |
| 223 | void cByteQueue::Put(byte inByte) |
| 224 | { |
no outgoing calls
no test coverage detected