This is a built-in template used for filling the body of an overridden function each time it is generated by the program, e.g. when calling the Code | Override Functions... function.
The template is editable. Along with C++ expressions and comments, you can also use predefined variables that will be then expanded into the corresponding values.
Predefined variables will take the following values:
${CALL_SUPER}   a base function call, for void functions - BaseClass::functionName() with or without parameters; for other functions - return BaseClass::functionName() with or without parameters
${RETURN_TYPE}   return type of a created function
${DEFAULT_RETURN_VALUE}   value returned by the function by default
All the predefined variables from the C File Header template (Includes tab) are also available (e.g. ${USER}, ${DATE}, etc.)