------------------------------- EntityLink::SetDeserializedId Set the id and register with the link resover
| 75 | // Set the id and register with the link resover |
| 76 | // |
| 77 | void EntityLink::SetDeserializedId(T_EntityId const val) |
| 78 | { |
| 79 | id = val; |
| 80 | if (id != INVALID_ENTITY_ID) |
| 81 | { |
| 82 | EntityLinkResolver::Instance().RegisterLink(this); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | |
| 87 | //==================== |
nothing calls this directly
no test coverage detected