| 934 | } |
| 935 | |
| 936 | void ImageFileImpl::checkImageFileOpen( const char *srcFileName, int srcLineNumber, |
| 937 | const char *srcFunctionName ) const |
| 938 | { |
| 939 | if ( !isOpen() ) |
| 940 | { |
| 941 | throw E57Exception( ErrorImageFileNotOpen, "fileName=" + fileName(), srcFileName, |
| 942 | srcLineNumber, srcFunctionName ); |
| 943 | } |
| 944 | } |
| 945 | } |
nothing calls this directly
no test coverage detected