| 313 | } |
| 314 | |
| 315 | bool cByteQueue::operator==(const cByteQueue& rhs) const |
| 316 | { |
| 317 | const unsigned long currentSize = CurrentSize(); |
| 318 | |
| 319 | if (currentSize != rhs.CurrentSize()) |
| 320 | return false; |
| 321 | |
| 322 | for (unsigned long i = 0; i < currentSize; i++) |
| 323 | if ((*this)[i] != rhs[i]) |
| 324 | return false; |
| 325 | |
| 326 | return true; |
| 327 | } |
| 328 | |
| 329 | byte cByteQueue::operator[](unsigned long i) const |
| 330 | { |
nothing calls this directly
no test coverage detected