Blame templates/html/htmlclass.tpl

Packit 1c1d7e
{% extend 'htmlbase.tpl' %}
Packit 1c1d7e
{% msg %}Generating HTML output for class {{ compound.name }}{% endmsg %}
Packit 1c1d7e
Packit 1c1d7e
{% block navpath %}
Packit 1c1d7e
{% if not config.GENERATE_TREEVIEW %}
Packit 1c1d7e
  {% with navpath=compound.navigationPath %}
Packit 1c1d7e
    {% include 'htmlnavpath.tpl' %}
Packit 1c1d7e
  {% endwith %}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
{% endblock %}
Packit 1c1d7e
Packit 1c1d7e
{% block title %}
Packit 1c1d7e
  {# write summary links in the title area #}
Packit 1c1d7e
  
Packit 1c1d7e
  {% with first=True %}
Packit 1c1d7e
    {% if compound.classes %}
Packit 1c1d7e
      {{ tr.classes }}
Packit 1c1d7e
      {% set first=False %}
Packit 1c1d7e
    {% endif %}
Packit 1c1d7e
    {% if compound.allMembersList %}
Packit 1c1d7e
      {% if not first %} | {% endif %}
Packit 1c1d7e
      {{ tr.listOfAllMembers }}
Packit 1c1d7e
      {% set first=False %}
Packit 1c1d7e
    {% endif %}
Packit 1c1d7e
    {% with memberListInfo=compound.publicTypes %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.unoIDLServices %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.unoIDLInterfaces %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.publicSlots %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.signals %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.publicMethods %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.publicStaticMethods %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.publicAttributes %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.publicStaticAttributes %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.protectedTypes %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.protectedSlots %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.protectedMethods %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.protectedStaticMethods %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.protectedAttributes %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.protectedStaticAttributes %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.packageTypes %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.packageMethods %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.packageStaticMethods %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.packageAttributes %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.packageStaticAttributes %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.properties %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.events %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.privateTypes %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.privateSlots %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.privateMethods %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.privateStaticMethods %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.privateAttributes %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.privateStaticAttributes %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.friends %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.related %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {% endwith %}
Packit 1c1d7e
  
Packit 1c1d7e
  {{ block.super }}
Packit 1c1d7e
{% endblock %}
Packit 1c1d7e
Packit 1c1d7e
{% block content %}
Packit 1c1d7e
Packit 1c1d7e
{# brief description #}
Packit 1c1d7e
  {% if compound.brief %}
Packit 1c1d7e
    {{ compound.brief }}
Packit 1c1d7e
    {% if compound.hasDetails %}
Packit 1c1d7e
      {{ tr.more }}
Packit 1c1d7e
    {% endif %}
Packit 1c1d7e
  {% endif %}
Packit 1c1d7e
{# includes #}
Packit 1c1d7e
  {% if compound.includeInfo %}
Packit 1c1d7e
    
Packit 1c1d7e
    {% with ii=compound.includeInfo %}
Packit 1c1d7e
      {% include 'htmlinclude.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    
Packit 1c1d7e
  {% endif %}
Packit 1c1d7e
{# inheritancegraph #}
Packit 1c1d7e
  {% if compound.hasInheritanceDiagram %}
Packit 1c1d7e
    {% with obj=compound %}
Packit 1c1d7e
      {% include 'htmldynheader.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
      {{ tr.inheritanceDiagramFor:compound.name }}
Packit 1c1d7e
    
Packit 1c1d7e
    {% with obj=compound %}
Packit 1c1d7e
      {% include 'htmldyncontents.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
      {{ compound.inheritanceDiagram }}
Packit 1c1d7e
    
Packit 1c1d7e
    {# TODO: legend #}
Packit 1c1d7e
  {% else %}
Packit 1c1d7e
    {# textual inheritance list #}
Packit 1c1d7e
    {% if compound.inherits|length>0 %}
Packit 1c1d7e
      

Packit 1c1d7e
      {% markers c in compound.inherits with tr.inheritsList:compound.inherits|length %}
Packit 1c1d7e
        {% with obj=c.class text=c.name %}
Packit 1c1d7e
          {% include 'htmlobjlink.tpl' %}
Packit 1c1d7e
        {% endwith %}
Packit 1c1d7e
      {% endmarkers %}
Packit 1c1d7e
      

Packit 1c1d7e
    {% endif %}
Packit 1c1d7e
    {% if compound.inheritedBy|length>0 %}
Packit 1c1d7e
      

Packit 1c1d7e
      {% markers c in compound.inheritedBy with tr.inheritedByList:compound.inheritedBy|length %}
Packit 1c1d7e
        {% with obj=c.class text=c.name %}
Packit 1c1d7e
          {% include 'htmlobjlink.tpl' %}
Packit 1c1d7e
        {% endwith %}
Packit 1c1d7e
      {% endmarkers %}
Packit 1c1d7e
      

Packit 1c1d7e
    {% endif %}
Packit 1c1d7e
  {% endif %}
Packit 1c1d7e
{# collaborationgraph #}
Packit 1c1d7e
  {% if compound.hasCollaborationDiagram %}
Packit 1c1d7e
    {% with obj=compound %}
Packit 1c1d7e
      {% include 'htmldynheader.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
      {{ tr.collaborationDiagramFor:compound.name }}
Packit 1c1d7e
    
Packit 1c1d7e
    {% with obj=compound %}
Packit 1c1d7e
      {% include 'htmldyncontents.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
      {{ compound.collaborationDiagram }}
Packit 1c1d7e
    
Packit 1c1d7e
  {% endif %}
Packit 1c1d7e
{# memberdecls #}
Packit 1c1d7e
    {# nestedClasses #}
Packit 1c1d7e
      {% with list=compound.classes label='nested-classes' title=tr.classes local=1 %}
Packit 1c1d7e
        {% include 'htmldeclcomp.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# publicTypes #}
Packit 1c1d7e
      {% with memberListInfo=compound.publicTypes %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# services #}
Packit 1c1d7e
      {% with memberListInfo=compound.unoIDLServices %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# interfaces #}
Packit 1c1d7e
      {% with memberListInfo=compound.unoIDLInterfaces %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# publicSlots #}
Packit 1c1d7e
      {% with memberListInfo=compound.publicSlots %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# signals #}
Packit 1c1d7e
      {% with memberListInfo=compound.signals %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# publicMethods #}
Packit 1c1d7e
      {% with memberListInfo=compound.publicMethods %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# publicStaticMethods #}
Packit 1c1d7e
      {% with memberListInfo=compound.publicStaticMethods %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# publicAttributes #}
Packit 1c1d7e
      {% with memberListInfo=compound.publicAttributes %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# publicStaticAttributes #}
Packit 1c1d7e
      {% with memberListInfo=compound.publicStaticAttributes %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# protectedtypes #}
Packit 1c1d7e
      {% with memberListInfo=compound.protectedTypes %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# protectedslots #}
Packit 1c1d7e
      {% with memberListInfo=compound.protectedSlots %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# protectedmethods #}
Packit 1c1d7e
      {% with memberListInfo=compound.protectedMethods %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# protectedstaticmethods #}
Packit 1c1d7e
      {% with memberListInfo=compound.protectedStaticMethods %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# protectedattributes #}
Packit 1c1d7e
      {% with memberListInfo=compound.protectedAttributes %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# protectedstaticattributes #}
Packit 1c1d7e
      {% with memberListInfo=compound.protectedStaticAttributes %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# packagetypes #}
Packit 1c1d7e
      {% with memberListInfo=compound.packageTypes %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# packagemethods #}
Packit 1c1d7e
      {% with memberListInfo=compound.packageMethods %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# packagestaticmethods #}
Packit 1c1d7e
      {% with memberListInfo=compound.packageStaticMethods %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# packageattributes #}
Packit 1c1d7e
      {% with memberListInfo=compound.packageAttributes %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# packagestaticattributes #}
Packit 1c1d7e
      {% with memberListInfo=compound.packageStaticAttributes %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# properties #}
Packit 1c1d7e
      {% with memberListInfo=compound.properties %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# events #}
Packit 1c1d7e
      {% with memberListInfo=compound.events %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# privatetypes #}
Packit 1c1d7e
      {% with memberListInfo=compound.privateTypes %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# privateslots #}
Packit 1c1d7e
      {% with memberListInfo=compound.privateSlots %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# privatemethods #}
Packit 1c1d7e
      {% with memberListInfo=compound.privateMethods %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# privatestaticmethods #}
Packit 1c1d7e
      {% with memberListInfo=compound.privateStaticMethods %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# privateattributes #}
Packit 1c1d7e
      {% with memberListInfo=compound.privateAttributes %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# privatestaticattributes #}
Packit 1c1d7e
      {% with memberListInfo=compound.privateStaticAttributes %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# friends #}
Packit 1c1d7e
      {% with memberListInfo=compound.friends %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# related #}
Packit 1c1d7e
      {% with memberListInfo=compound.related %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {# member groups #}
Packit 1c1d7e
      {% if compound.memberGroups %}
Packit 1c1d7e
        {% for memberListInfo in compound.memberGroups %}
Packit 1c1d7e
          {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
        {% endfor %}
Packit 1c1d7e
      {% endif %}
Packit 1c1d7e
    {# additionalInheritedMembers #}
Packit 1c1d7e
      {% if compound.additionalInheritedMembers %}
Packit 1c1d7e
        
Packit 1c1d7e
        

Packit 1c1d7e
        {{ tr.additionalInheritedMembers }}
Packit 1c1d7e
        
Packit 1c1d7e
        {# write additional inherited members #}
Packit 1c1d7e
        {% for info in compound.additionalInheritedMembers %}
Packit 1c1d7e
          {% include 'htmlmeminherit.tpl' %}
Packit 1c1d7e
        {% endfor %}
Packit 1c1d7e
        
Packit 1c1d7e
      {% endif %}
Packit 1c1d7e
{# detailed description #}
Packit 1c1d7e
{% if compound.hasDetails %}
Packit 1c1d7e
  {% if compound.anchor %}
Packit 1c1d7e
    
Packit 1c1d7e
  {% else %}
Packit 1c1d7e
    
Packit 1c1d7e
  {% endif %}
Packit 1c1d7e
  

{{ tr.detailedDesc }}

Packit 1c1d7e
  
Packit 1c1d7e
  {# template specifier #}
Packit 1c1d7e
  {% if compound.language=='cpp' and compound.templateDecls %}
Packit 1c1d7e
    

{% spaceless %}

Packit 1c1d7e
      {% for targList in compound.templateDecls %}
Packit 1c1d7e
        template<
Packit 1c1d7e
        {% for targ in targList %}
Packit 1c1d7e
          {{ targ.type }}{% if targ.name %} {{ targ.name }}{% endif %}{% if targ.defVal %} = {{ targ.defVal }}{% endif %}{% if not forloop.last %}, {% endif %}
Packit 1c1d7e
        {% endfor %}
Packit 1c1d7e
        >
Packit 1c1d7e
      {% endfor %}
Packit 1c1d7e
    {% endspaceless %}
Packit 1c1d7e
    {{ compound.compoundType }} {{ compound.name }}
Packit 1c1d7e
    
Packit 1c1d7e
  {% endif %}
Packit 1c1d7e
  {# brief description #}
Packit 1c1d7e
  {% if compound.brief and config.REPEAT_BRIEF %}
Packit 1c1d7e
    

Packit 1c1d7e
    {{ compound.brief }}
Packit 1c1d7e
    

Packit 1c1d7e
  {% endif %}
Packit 1c1d7e
  {{ compound.details }}
Packit 1c1d7e
  
Packit 1c1d7e
  {# type constraints #}
Packit 1c1d7e
    {% with obj=compound %}
Packit 1c1d7e
      {% include 'htmltypeconstraints.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# examples #}
Packit 1c1d7e
    {% if compound.examples %}
Packit 1c1d7e
      
{{ tr.examples }}
Packit 1c1d7e
      {% markers obj in compound.examples with tr.exampleList:compound.examples|length %}
Packit 1c1d7e
        {% with text=obj.text %}
Packit 1c1d7e
          {% include 'htmlobjlink.tpl' %}
Packit 1c1d7e
        {% endwith %}
Packit 1c1d7e
      {% endmarkers %}
Packit 1c1d7e
      
Packit 1c1d7e
    {% endif %}
Packit 1c1d7e
  {# source definition #}
Packit 1c1d7e
    {% if compound.sourceDef %}
Packit 1c1d7e
      {% markers obj in compound.sourceDef with tr.definedAtLineInSourceFile %}
Packit 1c1d7e
        {% with text=obj.text %}
Packit 1c1d7e
          {% include 'htmlobjlink.tpl' %}
Packit 1c1d7e
        {% endwith %}
Packit 1c1d7e
      {% endmarkers %}
Packit 1c1d7e
    {% endif %}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
{# member definitions #}
Packit 1c1d7e
  {# inline classes #}
Packit 1c1d7e
    {% with classList=compound.innerClasses %}
Packit 1c1d7e
      {% include 'htmlinlineclasses.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# typedefs #}
Packit 1c1d7e
    {% with memberListInfo=compound.detailedTypedefs %}
Packit 1c1d7e
      {% include 'htmlmemdef.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# enums #}
Packit 1c1d7e
    {% with memberListInfo=compound.detailedEnums %}
Packit 1c1d7e
      {% include 'htmlmemdef.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# services #}
Packit 1c1d7e
    {% with memberListInfo=compound.detailedServices %}
Packit 1c1d7e
      {% include 'htmlmemdef.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# interfaces #}
Packit 1c1d7e
    {% with memberListInfo=compound.detailedInterfaces %}
Packit 1c1d7e
      {% include 'htmlmemdef.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# constructors #}
Packit 1c1d7e
    {% with memberListInfo=compound.detailedConstructors %}
Packit 1c1d7e
      {% include 'htmlmemdef.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# functions #}
Packit 1c1d7e
    {% with memberListInfo=compound.detailedMethods %}
Packit 1c1d7e
      {% include 'htmlmemdef.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# related #}
Packit 1c1d7e
    {% with memberListInfo=compound.detailedRelated %}
Packit 1c1d7e
      {% include 'htmlmemdef.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# variables #}
Packit 1c1d7e
    {% with memberListInfo=compound.detailedVariables %}
Packit 1c1d7e
      {% include 'htmlmemdef.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# properties #}
Packit 1c1d7e
    {% with memberListInfo=compound.detailedProperties %}
Packit 1c1d7e
      {% include 'htmlmemdef.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# events #}
Packit 1c1d7e
    {% with memberListInfo=compound.detailedEvents %}
Packit 1c1d7e
      {% include 'htmlmemdef.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
{# used files #}
Packit 1c1d7e
  {% if config.SHOW_USED_FILES %}
Packit 1c1d7e
    
Packit 1c1d7e
    {{ compound.generatedFromFiles }}
Packit 1c1d7e
    
    Packit 1c1d7e
        {% for file in compound.usedFiles %}
    Packit 1c1d7e
          
  • {% if file.sourceFileName %}
  • Packit 1c1d7e
                
    Packit 1c1d7e
              {% endif %}
    Packit 1c1d7e
              {% if not file.sourceFileName and file.isLinkable %}
    Packit 1c1d7e
                
    Packit 1c1d7e
              {% endif %}
    Packit 1c1d7e
              {% if config.FULL_PATH_NAMES %}
    Packit 1c1d7e
                {{ file.name }}
    Packit 1c1d7e
              {% else %}
    Packit 1c1d7e
                {{ file.name|stripPath }}
    Packit 1c1d7e
              {% endif %}
    Packit 1c1d7e
              {% if file.sourceFileName or file.isLinkable %}
    Packit 1c1d7e
                
    Packit 1c1d7e
              {% endif %}
    Packit 1c1d7e
              {% if file.versionInfo %} {{ file.versionInfo }}{% endif %}
    Packit 1c1d7e
          
    Packit 1c1d7e
        {% endfor %}
    Packit 1c1d7e
        
    Packit 1c1d7e
      {% endif %}
    Packit 1c1d7e
    Packit 1c1d7e
    {% endblock %}
    Packit 1c1d7e