Copyright VirtualSim 2004-2020 - All rights reserved
Using Setters
SET[...]: specify the name given to the setter function for this variable. This setter will be used in the setUserData function. The setter code will be automatically added.
ie:
int my_value; //&& SET[setTemperature]
NOSET: setter function will not be generated and value will be directly assign in the setUserData function (ie: foo = 17;)
USRSET or USERSET: cancel automatic setter generation code to allow user to define its own.