| 102 | //----------------------------------------------------------------------------- |
| 103 | |
| 104 | bool EngineTypeInfo::isSubtypeOf( const EngineTypeInfo* type ) const |
| 105 | { |
| 106 | for( const EngineTypeInfo* p = this; p != NULL; p = p->getSuperType() ) |
| 107 | if( p == type ) |
| 108 | return true; |
| 109 | |
| 110 | return false; |
| 111 | } |
| 112 | |
| 113 | //----------------------------------------------------------------------------- |
| 114 |
nothing calls this directly
no test coverage detected