| 246 | } |
| 247 | |
| 248 | void childNames( NameList &childNames ) const |
| 249 | { |
| 250 | ConstIndexedIOPtr children = m_indexedIO->subdirectory( childrenEntry, IndexedIO::NullIfMissing ); |
| 251 | if ( !children ) |
| 252 | { |
| 253 | // it's ok for an entry to not have children |
| 254 | childNames.clear(); |
| 255 | return; |
| 256 | } |
| 257 | children->entryIds( childNames, IndexedIO::Directory ); |
| 258 | } |
| 259 | |
| 260 | bool hasChild( const Name &name ) const |
| 261 | { |
nothing calls this directly
no test coverage detected