Files
powertrain-build/test_data/test_repo/Models/Common/VcEnumDefinitions/VmsQf.m
Henrik Wahlqvist 38a1ecd2dc ARTCSF-3856: Set up simple sample projects and jobs/tests
Change-Id: I5b397ad0e490343ee9a751f81c40e3ebc9ff2bb5
2025-09-04 12:04:07 +00:00

27 lines
552 B
Matlab

classdef VmsQf < Simulink.IntEnumType
enumeration
Error(0)
Unknown(1)
Low(2)
Medium(3)
High(4)
Full(5)
end
methods (Static)
function retVal = getDescription()
retVal = 'VmsQf';
end
function retVal = getDefaultValue()
retVal = VmsQf.Unknown;
end
function retVal = getDataScope()
retVal = 'Exported';
end
function retVal = addClassNameToEnumNames()
retVal = true;
end
end
end