| 54 | |
| 55 | |
| 56 | inline list arrayToList( std::vector<IndexedIO::EntryID> &ids ) |
| 57 | { |
| 58 | list result; |
| 59 | for( SceneInterface::NameList::const_iterator it = ids.begin(); it != ids.end(); it++ ) |
| 60 | { |
| 61 | result.append( ( *it ).value() ); |
| 62 | } |
| 63 | return result; |
| 64 | } |
| 65 | |
| 66 | static list childNames( const SceneInterface &m ) |
| 67 | { |
no test coverage detected