| 119 | } |
| 120 | |
| 121 | bool hasAttribute( const Name &name ) const |
| 122 | { |
| 123 | ConstIndexedIOPtr attributes = m_indexedIO->subdirectory( attributesEntry, IndexedIO::NullIfMissing ); |
| 124 | if ( !attributes ) |
| 125 | return false; |
| 126 | |
| 127 | return attributes->hasEntry( name ); |
| 128 | } |
| 129 | |
| 130 | void attributeNames( NameList &attrsNames ) const |
| 131 | { |
nothing calls this directly
no test coverage detected