Warning, /kdevelop/kdevelop/file_templates/common/method_definition_cpp.txt is written in an unsupported language. File is not indexed.

0001 {% with method.arguments as arguments %}
0002 {% if not method.isConstructor and not method.isDestructor %}{{ method.returnType|default:"void" }} {% endif %}{{ name }}::{% if method.isConstructor %}{{ name }}{% else %}{{ method.name }}{% endif %}({% include "arguments_types_names.txt" %}){% if method.isConst %} const{% endif %}
0003 {% endwith %}