{# input: info (with .id .inheritedFrom and .members) #}
{% markers mark in info.inheritedFrom with tr.inheritedFrom %}
{% if markers.id==0 %} {# the title mark #}
{{ mark }}
{% endif %}
{% if markers.id==1 %} {# the class link mark #}
{% with obj=mark text=mark.name %}
{% include 'htmlobjlink.tpl' %}
{% endwith %}
{% endif %}
{% endmarkers %}
{% with inheritId=info.id anonymousNestingLevel=0 %}
{% for member in info.members %}
{% include 'htmlmemdecl.tpl' %}
{% endfor %}
{% endwith %}