Files
powertrain-build/test_data/test_repo/Models/Common/VcEnumDefinitions/HvDcDcMod.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

25 lines
557 B
Matlab

classdef HvDcDcMod < Simulink.IntEnumType
enumeration
NoConversion(0)
BuckMode(1)
BoostMode(2)
NotSpecified(3)
end
methods (Static)
function retVal = getDescription()
retVal = 'HvDcDcMod';
end
function retVal = getDefaultValue()
retVal = HvDcDcMod.NotSpecified;
end
function retVal = getDataScope()
retVal = 'Exported';
end
function retVal = addClassNameToEnumNames()
retVal = true;
end
end
end