27 lines
552 B
Matlab
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
|