{% extend 'htmlbase.tpl' %} {% block title %}
{{ compound.name }} {{ tr.memberList }}
{% endblock %} {% block content %}

{{ tr.theListOfAllMembers }} {{ compound.name }}{{ tr.incInheritedMembers }}

{% for mi in compound.allMembersList %} {% spaceless %} {% with member=mi.member %} {% if member.language=='objc' %} {% endif %} {% if member.isObjCMethod %} {%else %} {# name #} {% endif %} {# class link #} {# labels #} {% if member.labels %} {% endif %} {% endwith %} {% endspaceless %} {% endfor %}
{% if member.isObjCMethod %} {% if member.isStatic %}+ {% else %}- {% endif %} {% endif %} {% with obj=member text=member.name %} {% include 'htmlobjlink.tpl' %} {% endwith %} {% with obj=member text=mi.ambiguityScope|append:member.name %} {% include 'htmlobjlink.tpl' %} {% endwith %} {% if member.isEnumeration %}  {{ tr.enumName }} {% elif member.isEnumValue %}  {{ tr.enumValue }} {% elif member.isTypedef %}  typedef {% elif member.isFriend and member.type=='friend class' %}  class {% elif member.isFunction or member.isSignal or member.isSlot or (member.isFriend and member.hasParameters) %} {{ member.declArgs }} {% endif %} {% if member.category %} {% with obj=member.category text=member.category.name %} {% include 'htmlobjlink.tpl' %} {% endwith %} {% else %} {% with obj=member.class text=member.class.name %} {% include 'htmlobjlink.tpl' %} {% endwith %} {% endif %} {% for label in member.labels %} {{ label }} {% endfor %}
{% endblock %}