! @brief Look up an E57 extension prefix in the ImageFile. @param [in] prefix The shorthand name of the extension to look up. @details If @a prefix = "" or @a prefix is declared in the ImageFile, then the function returns true. It is an error if @a prefix contains an illegal character combination for E57 namespace prefixes. @pre This ImageFile must be open (i.e. isOpen()). @post No visible stat
| 531 | @see ImageFile::extensionsLookupUri |
| 532 | */ |
| 533 | bool ImageFile::extensionsLookupPrefix( const ustring &prefix ) const |
| 534 | { |
| 535 | ustring uri; |
| 536 | return impl_->extensionsLookupPrefix( prefix, uri ); |
| 537 | } |
| 538 | |
| 539 | /*! |
| 540 | @brief Get URI associated with an E57 extension prefix in the ImageFile. |
no outgoing calls