| 687 | } |
| 688 | |
| 689 | void ImageFileImpl::decrReaderCount() |
| 690 | { |
| 691 | readerCount_--; |
| 692 | |
| 693 | #if ( E57_VALIDATION_LEVEL == VALIDATION_DEEP ) |
| 694 | if ( readerCount_ < 0 ) |
| 695 | { |
| 696 | throw E57_EXCEPTION2( ErrorInternal, "fileName=" + fileName_ + |
| 697 | " writerCount=" + toString( writerCount_ ) + |
| 698 | " readerCount=" + toString( readerCount_ ) ); |
| 699 | } |
| 700 | #endif |
| 701 | } |
| 702 | |
| 703 | void ImageFileImpl::elementNameParse( const ustring &elementName, ustring &prefix, |
| 704 | ustring &localPart, bool allowNumber ) |