| 132 | } |
| 133 | |
| 134 | bool MetaObjectRegistry::isStatic(const QMetaObject *metaObject) const |
| 135 | { |
| 136 | const auto it = m_metaObjectInfoMap.constFind(metaObject); |
| 137 | if (it == m_metaObjectInfoMap.constEnd()) |
| 138 | return false; |
| 139 | return (*it).isStatic; |
| 140 | } |
| 141 | |
| 142 | const QMetaObject *MetaObjectRegistry::parentOf(const QMetaObject *metaObject) const |
| 143 | { |
no test coverage detected