! @brief Get an E57 extension URI declared in an ImageFile by index. @param [in] index The index of the URI to get, starting at 0. @details The order that the URIs are stored is not necessarily the same as the order they were created. However the URI order will correspond to the prefix order. The default E57 namespace is not counted as an extension. @pre This ImageFile must be open (i.e. isOpen
| 666 | @see ImageFile::extensionsCount, ImageFile::extensionsPrefix |
| 667 | */ |
| 668 | ustring ImageFile::extensionsUri( const size_t index ) const |
| 669 | { |
| 670 | return impl_->extensionsUri( index ); |
| 671 | } |
| 672 | |
| 673 | /*! |
| 674 | @brief Test whether an E57 element name has an extension prefix. |