{# NEST function header template Template variables are: - name: string with the name of the function - vars: list of strings with the name of the arguments - localVars: list of strings with the name of any local variables - returnVar: the name of the return variable - exprString: string with expression body converted to NMODL syntax #} {% macro nest_function_header(name,returnType,returnVar,vars,localVars,consts,exprString) %} {{returnType}} {{name}} ({{ vars | join (", ") }}); {% endmacro %}