20 lines
440 B
Matlab
20 lines
440 B
Matlab
classdef ENUM_AG < Simulink.IntEnumType
|
|
enumeration
|
|
OFF (0)
|
|
COMMAND(1)
|
|
HDOT_MC (2)
|
|
end
|
|
methods (Static = true)
|
|
function retVal = getDescription()
|
|
retVal = 'Auto Gyroplane type';
|
|
end
|
|
function retVal = getDefaultValue()
|
|
retVal = ENUM_AG.OFF;
|
|
end
|
|
function retVal = addClassNameToEnumNames()
|
|
retVal = true;
|
|
end
|
|
end
|
|
end
|
|
|