Blame templates/html/htmlclass.tpl

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

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

Packit Service 50c9f2
    {% endif %}
Packit Service 50c9f2
    {% if compound.inheritedBy|length>0 %}
Packit Service 50c9f2
      

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

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

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

{{ tr.detailedDesc }}

Packit Service 50c9f2
  
Packit Service 50c9f2
  {# template specifier #}
Packit Service 50c9f2
  {% if compound.language=='cpp' and compound.templateDecls %}
Packit Service 50c9f2
    

{% spaceless %}

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

Packit Service 50c9f2
    {{ compound.brief }}
Packit Service 50c9f2
    

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