MCPcopy Create free account
hub / github.com/ImageEngine/cortex / readChildSets

Method readChildSets

src/IECoreScene/SceneCache.cpp:272–286  ·  view source on GitHub ↗

Returns the set names defined at locations which are descended from this location, excluding the current location.

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

subdirectoryMethod · 0.80
entryIdsMethod · 0.45

Tested by

no test coverage detected