{% extend 'htmlbase.tpl' %} {% msg %}Generating HTML output for file {{ compound.name }}{% endmsg %} {% block navpath %} {% if not config.GENERATE_TREEVIEW %} {% with navpath=compound.navigationPath %} {% include 'htmlnavpath.tpl' %} {% endwith %} {% endif %} {% endblock %} {% block title %} {# write summary links in the title area #}
{% with first=True %} {% if compound.classes %} {{ tr.classes }} {% set first=False %} {% endif %} {% if compound.namespaces %} {% if not first %} | {% endif %} {{ tr.namespaces }} {% set first=False %} {% endif %} {% if compound.constantgroups %} {% if not first %} | {% endif %} {{ tr.constantgroups }} {% set first=False %} {% endif %} {% with memberListInfo=compound.macros %} {% include 'htmlmemsummary.tpl' %} {% endwith %} {% with memberListInfo=compound.typedefs %} {% include 'htmlmemsummary.tpl' %} {% endwith %} {% with memberListInfo=compound.enums %} {% include 'htmlmemsummary.tpl' %} {% endwith %} {% with memberListInfo=compound.functions %} {% include 'htmlmemsummary.tpl' %} {% endwith %} {% with memberListInfo=compound.variables %} {% include 'htmlmemsummary.tpl' %} {% endwith %} {% endwith %}
{{ block.super }} {% endblock %} {% block content %}
{# brief description #} {% if compound.brief %} {{ compound.brief }} {% if compound.hasDetails %} {{ tr.more }} {% endif %} {% endif %} {# includes #} {% if compound.includeList %}
{% for ii in compound.includeList %} {% include 'htmlinclude.tpl' %}
{% endfor %}
{% endif %} {# include graph #} {% if compound.hasIncludeGraph %} {% with obj=compound %} {% include 'htmldynheader.tpl' %} {% endwith %} {{ tr.includeDependencyGraph:compound.name }}
{% with obj=compound %} {% include 'htmldyncontents.tpl' %} {% endwith %} {{ compound.includeGraph }} {% endif %} {# included by graph #} {% if compound.hasIncludedByGraph %} {% with obj=compound %} {% include 'htmldynheader.tpl' %} {% endwith %} {{ tr.includedByDependencyGraph }} {% with obj=compound %} {% include 'htmldyncontents.tpl' %} {% endwith %} {{ compound.includedByGraph }} {% endif %} {# source link #} {% if compound.hasSourceFile %}

{{ tr.gotoSourceCode }}

{% endif %} {# member declarations #} {# classes #} {% with list=compound.classes label='nested-classes' title=tr.classes local=False %} {% include 'htmldeclcomp.tpl' %} {% endwith %} {# namespaces #} {% with list=compound.namespaces, label='namespaces' title=tr.namespaces local=False %} {% include 'htmldeclcomp.tpl' %} {% endwith %} {# constantgroups #} {% with list=compound.constantgroups, label='constantgroups' title=tr.constantgroups local=False %} {% include 'htmldeclcomp.tpl' %} {% endwith %} {# defines #} {% with memberListInfo=compound.macros %} {% include 'htmlmemdecls.tpl' %} {% endwith %} {# typedefs #} {% with memberListInfo=compound.typedefs %} {% include 'htmlmemdecls.tpl' %} {% endwith %} {# enums #} {% with memberListInfo=compound.enums %} {% include 'htmlmemdecls.tpl' %} {% endwith %} {# functions #} {% with memberListInfo=compound.functions %} {% include 'htmlmemdecls.tpl' %} {% endwith %} {# variables #} {% with memberListInfo=compound.variables %} {% include 'htmlmemdecls.tpl' %} {% endwith %} {# membergroups #} {% if compound.memberGroups %} {% for memberListInfo in compound.memberGroups %} {% include 'htmlmemdecls.tpl' %} {% endfor %} {% endif %} {# end member declarations #} {# detailed description #} {% if compound.hasDetails %} {# anchor #} {# header #}

{{ tr.detailedDesc }}

{# brief #} {% if compound.brief and config.REPEAT_BRIEF %}

{{ compound.brief }}

{% endif %} {# details #} {{ compound.details }} {# source definition #} {% if compound.sourceDef %} {% markers obj in compound.sourceDef with tr.definedAtLineInSourceFile %} {% with text=obj.text %} {% include 'htmlobjlink.tpl' %} {% endwith %} {% endmarkers %} {% endif %}
{% endif %} {# member definitions #} {# inline classes #} {% with classList=compound.inlineClasses %} {% include 'htmlinlineclasses.tpl' %} {% endwith %} {# defines #} {% with memberListInfo=compound.detailedMacros %} {% include 'htmlmemdef.tpl' %} {% endwith %} {# typedefs #} {% with memberListInfo=compound.detailedTypedefs %} {% include 'htmlmemdef.tpl' %} {% endwith %} {# enums #} {% with memberListInfo=compound.detailedEnums %} {% include 'htmlmemdef.tpl' %} {% endwith %} {# functions #} {% with memberListInfo=compound.detailedFunctions %} {% include 'htmlmemdef.tpl' %} {% endwith %} {# variables #} {% with memberListInfo=compound.detailedVariables %} {% include 'htmlmemdef.tpl' %} {% endwith %} {# end member definitions #} {% endblock %}