| 833 | } |
| 834 | |
| 835 | MClass* MUtils::GetClass(MTypeObject* type) |
| 836 | { |
| 837 | if (type == nullptr) |
| 838 | return nullptr; |
| 839 | MType* mType = INTERNAL_TYPE_OBJECT_GET(type); |
| 840 | return MCore::Type::GetClass(mType); |
| 841 | } |
| 842 | |
| 843 | MClass* MUtils::GetClass(const VariantType& value) |
| 844 | { |
no test coverage detected