| 19 | } |
| 20 | |
| 21 | void TypeSystem::callDestructor(AbstractTypeData* data) const |
| 22 | { |
| 23 | Q_ASSERT(data); |
| 24 | if (!ensureFactoryLoaded(*data)) { |
| 25 | return; |
| 26 | } |
| 27 | m_factories.value(data->typeClassId)->callDestructor(data); |
| 28 | } |
| 29 | |
| 30 | uint TypeSystem::dynamicSize(const AbstractTypeData& data) const |
| 31 | { |