| 25 | |
| 26 | |
| 27 | MatInstanceHookType::MatInstanceHookType( const char *type ) |
| 28 | { |
| 29 | TypeMap::Iterator iter = getTypeMap().find( type ); |
| 30 | if ( iter == getTypeMap().end() ) |
| 31 | iter = getTypeMap().insertUnique( type, getTypeMap().size() ); |
| 32 | |
| 33 | mTypeIndex = iter->value; |
| 34 | } |
| 35 |
nothing calls this directly
no test coverage detected