{% import "concept/_naming.html" as naming %}
{% import "concept/_complexity_table.html" as table %}
{% set class = objects[0] %}
{{ table.header() }}
{% for obj in objects %}
{% if obj.is_class %}
{% for o in obj.children %}
{% if public and o.prot=="public" or private and o.prot=="private" %}
{{ table.row(naming.format(o) , o, "table") }}
{% endif %}
{% endfor %}
{% elif obj.is_function %}
{{ table.row(naming.format(obj) , obj, "table") }}
{% endif %}
{% endfor %}