| 70 | //----------------------------------------------------------------------------- |
| 71 | |
| 72 | const EngineTypeInfo* EngineTypeInfo::getTypeInfoByName( const char* typeName ) |
| 73 | { |
| 74 | for( const EngineTypeInfo* typeInfo = getFirstType(); typeInfo != NULL; typeInfo = typeInfo->getNextType() ) |
| 75 | if( dStricmp( typeInfo->getTypeName(), typeName ) == 0 ) |
| 76 | return typeInfo; |
| 77 | |
| 78 | return NULL; |
| 79 | } |
| 80 | |
| 81 | //----------------------------------------------------------------------------- |
| 82 |
nothing calls this directly
no test coverage detected