| 57 | } |
| 58 | |
| 59 | void TypeSystem::copy(const AbstractTypeData& from, AbstractTypeData& to, bool constant) const |
| 60 | { |
| 61 | //Shouldn't try to copy an unknown type |
| 62 | ensureFactoryLoaded(from); |
| 63 | m_factories.value(from.typeClassId)->copy(from, to, constant); |
| 64 | } |
| 65 | |
| 66 | TypeSystem& TypeSystem::self() |
| 67 | { |