| 570 | } |
| 571 | |
| 572 | void ImageFileImpl::pathNameCheckWellFormed( const ustring &pathName ) |
| 573 | { |
| 574 | // no checkImageFileOpen(__FILE__, __LINE__, __FUNCTION__) |
| 575 | |
| 576 | // Just call pathNameParse() which throws if not well formed |
| 577 | bool isRelative = false; |
| 578 | StringList fields; |
| 579 | |
| 580 | pathNameParse( pathName, isRelative, fields ); |
| 581 | } |
| 582 | |
| 583 | void ImageFileImpl::pathNameParse( const ustring &pathName, bool &isRelative, |
| 584 | StringList &fields ) |