| 502 | } |
| 503 | |
| 504 | bool BufferedTransformation::AnyRetrievable() const |
| 505 | { |
| 506 | if (AttachedTransformation()) |
| 507 | return AttachedTransformation()->AnyRetrievable(); |
| 508 | else |
| 509 | { |
| 510 | byte b; |
| 511 | return Peek(b) != 0; |
| 512 | } |
| 513 | } |
| 514 | |
| 515 | size_t BufferedTransformation::Get(byte &outByte) |
| 516 | { |
no test coverage detected