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

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