| 706 | } |
| 707 | |
| 708 | void CompressedVectorWriterImpl::checkWriterOpen( const char *srcFileName, int srcLineNumber, |
| 709 | const char *srcFunctionName ) const |
| 710 | { |
| 711 | if ( !isOpen_ ) |
| 712 | { |
| 713 | throw E57Exception( ErrorWriterNotOpen, |
| 714 | "imageFileName=" + cVector_->imageFileName() + |
| 715 | " cvPathName=" + cVector_->pathName(), |
| 716 | srcFileName, srcLineNumber, srcFunctionName ); |
| 717 | } |
| 718 | } |
| 719 | |
| 720 | #ifdef E57_ENABLE_DIAGNOSTIC_OUTPUT |
| 721 | void CompressedVectorWriterImpl::dump( int indent, std::ostream &os ) |
nothing calls this directly
no test coverage detected