~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to file_templates/common/cpp_header_onlyfunctions.h

  • Committer: Package Import Robot
  • Author(s): Pino Toscano, Andreas Cord-Landwehr
  • Date: 2014-01-18 10:13:08 UTC
  • mfrom: (1.3.21)
  • Revision ID: package-import@ubuntu.com-20140118101308-3o17vgglnms0emch
Tags: 4:4.5.2-1
* Team upload.
* New upstream release.

[ Andreas Cord-Landwehr ]
* Remove patch okteta_optional_structures_tool.diff, applied upstream.
* Bump build dependency for kdevplatform-dev to 1.5.2.
* Bump Standards-Version to 3.9.5: no changes needed.
* Update debian/watch file to track xz compressed tarballs (Closes: #731896)

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
{% block class_body %}
38
38
{% if public_functions %}
39
39
public:
40
 
{% endif %}
41
40
    {% for method in public_functions %}
42
41
    {% include "method_declaration_cpp.txt" %}
43
42
    {% endfor %}
44
43
 
45
44
 
 
45
{% endif %}
46
46
{% if protected_functions %}
47
47
protected:
48
 
{% endif %}
49
48
    {% for method in protected_functions %}
50
49
    {% include "method_declaration_cpp.txt" %}
51
50
    {% endfor %}
52
51
 
53
52
 
 
53
{% endif %}
54
54
{% if private_functions %}
55
55
private:
56
 
{% endif %}
57
56
    {% for method in private_functions %}
58
57
    {% include "method_declaration_cpp.txt" %}
59
58
    {% endfor %}
60
59
 
61
60
 
 
61
{% endif %}
62
62
{% endblock class_body %}
63
63
 
64
64
{% block class_bottom %}