| 55 | } |
| 56 | |
| 57 | bool DecodeChannel::isInputBlocked() const |
| 58 | { |
| 59 | // If have read until the section end, we are done |
| 60 | if ( inputFinished ) |
| 61 | { |
| 62 | return ( true ); |
| 63 | } |
| 64 | |
| 65 | // If have eaten all the input in the current packet, we are blocked. |
| 66 | return ( currentBytestreamBufferIndex == currentBytestreamBufferLength ); |
| 67 | } |
| 68 | |
| 69 | #ifdef E57_ENABLE_DIAGNOSTIC_OUTPUT |
| 70 | void DecodeChannel::dump( int indent, std::ostream &os ) const |
no outgoing calls
no test coverage detected