{% set class = objects[0] %}
{% if class.is_class %}
Scope: {{ class.definition }}
Member
Description
{% for o in class.children %}
{# if o.is_member #}
{% if public and o.prot=="public" or private and o.prot=="private" %}
{% if o.briefdescription or all %}
{{ o|ref }}
{{ o.briefdescription }}
{% endif %}
{% endif %}
{# endif #}
{% endfor %}
{% else %}
WARNING! {{ class }} is not a class, but {{ class.type }}.