Returns the set names defined at locations which are descended from this location, excluding the current location.
| 270 | /// Returns the set names defined at locations which are descended from this |
| 271 | /// location, excluding the current location. |
| 272 | NameList readChildSets() const |
| 273 | { |
| 274 | IndexedIOPtr childSetsIO = m_indexedIO->subdirectory( childSetsEntry, IndexedIO::NullIfMissing ); |
| 275 | |
| 276 | NameList childSets; |
| 277 | |
| 278 | if( !childSetsIO ) |
| 279 | { |
| 280 | return childSets; |
| 281 | } |
| 282 | |
| 283 | childSetsIO->entryIds( childSets, IndexedIO::Directory ); |
| 284 | |
| 285 | return childSets; |
| 286 | } |
| 287 | |
| 288 | protected : |
| 289 |
nothing calls this directly
no test coverage detected