| 75 | #endif |
| 76 | |
| 77 | ImageFileImpl::ImageFileImpl( ReadChecksumPolicy policy ) : |
| 78 | isWriter_( false ), writerCount_( 0 ), readerCount_( 0 ), |
| 79 | checksumPolicy( std::max( 0, std::min( policy, 100 ) ) ), file_( nullptr ), |
| 80 | xmlLogicalOffset_( 0 ), xmlLogicalLength_( 0 ), unusedLogicalStart_( 0 ) |
| 81 | { |
| 82 | // First phase of construction, can't do much until have the ImageFile object. See |
| 83 | // ImageFileImpl::construct2() for second phase. |
| 84 | } |
| 85 | |
| 86 | void ImageFileImpl::construct2( const ustring &fileName, const ustring &mode ) |
| 87 | { |
nothing calls this directly
no outgoing calls
no test coverage detected