internal
| 1558 | |
| 1559 | // internal |
| 1560 | asCTypeInfo *asCModule::GetType(const asCString &type, asSNameSpace *ns) const |
| 1561 | { |
| 1562 | asSMapNode<asSNameSpaceNamePair, asCTypeInfo*>* result = 0; |
| 1563 | if(m_typeLookup.MoveTo(&result, asSNameSpaceNamePair(ns, type))) |
| 1564 | { |
| 1565 | return result->value; |
| 1566 | } |
| 1567 | return 0; |
| 1568 | } |
| 1569 | |
| 1570 | // internal |
| 1571 | asCObjectType *asCModule::GetObjectType(const char *type, asSNameSpace *ns) const |