| 596 | } |
| 597 | |
| 598 | void CompressedVectorReaderImpl::checkReaderOpen( const char *srcFileName, int srcLineNumber, |
| 599 | const char *srcFunctionName ) const |
| 600 | { |
| 601 | if ( !isOpen_ ) |
| 602 | { |
| 603 | throw E57Exception( ErrorReaderNotOpen, |
| 604 | "imageFileName=" + cVector_->imageFileName() + |
| 605 | " cvPathName=" + cVector_->pathName(), |
| 606 | srcFileName, srcLineNumber, srcFunctionName ); |
| 607 | } |
| 608 | } |
| 609 | |
| 610 | #ifdef E57_ENABLE_DIAGNOSTIC_OUTPUT |
| 611 | void CompressedVectorReaderImpl::dump( int indent, std::ostream &os ) |
nothing calls this directly
no test coverage detected