| 1427 | } |
| 1428 | |
| 1429 | void MField::SetValue(MObject* instance, void* value) const |
| 1430 | { |
| 1431 | static void* FieldSetValuePtr = GetStaticMethodPointer(TEXT("FieldSetValue")); |
| 1432 | CallStaticMethod<void, void*, void*, void*>(FieldSetValuePtr, instance, _handle, value); |
| 1433 | } |
| 1434 | |
| 1435 | bool MField::HasAttribute(const MClass* klass) const |
| 1436 | { |
no test coverage detected