getValue int BasicSkel::get_value(void); These inline functions allow you to get and set _value. Description: Retreives a value that was previously stored. |
getValueAlt int BasicSkel::get_value_alt(void); These do the same thing as the functions above. Description: Retreives a value that was previously stored. Exact same functionality as get_value, except that this isn't an inline function. |
setValue void BasicSkel::set_value(int n); These inline functions allow you to get and set _value. Description: Stores an integer value. |
setValueAlt void BasicSkel::set_value_alt(int n); These do the same thing as the functions above. Description: Stores an integer value. Exact same functionality as set_value, except that this isn't an inline function. |