--------------------------------------------------------------------------------
| 3006 | |
| 3007 | // -------------------------------------------------------------------------------- |
| 3008 | IEveSpaceObjectChildPtr EveSpaceObject2::GetEffectChildByName( const char* name ) const |
| 3009 | { |
| 3010 | for( auto it = begin( m_effectChildren ); it != end( m_effectChildren ); ++it ) |
| 3011 | { |
| 3012 | auto child = *it; |
| 3013 | if( strcmp( child->GetName(), name ) == 0 ) |
| 3014 | { |
| 3015 | return child; |
| 3016 | } |
| 3017 | } |
| 3018 | return nullptr; |
| 3019 | } |
| 3020 | |
| 3021 | // -------------------------------------------------------------------------------- |
| 3022 | // Description: |
no test coverage detected