1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
{# input: classList #}
{% if classList %}
<h2 class="groupheader">{{ tr.classDocumentation }}</h2>
{% for class in classList %}
{# write anchor #}
<a class="anchor" id="{{ class.anchor }}"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr><td class="memname">{{ class.compoundType }} {{ class.name }}</td></tr>
</table>
</div>
<div class="memdoc">
<div class="textblock">
{# template specifier #}
{% if class.language=='cpp' and class.templateDecls %}
<h3>{% spaceless %}
{% for targList in class.templateDecls %}
template<
{% for targ in targList %}
{{ targ.type }}{% if targ.name %} {{ targ.name }}{% endif %}{% if targ.defVal %} = {{ targ.defVal }}{% endif %}{% if not forloop.last %}, {% endif %}
{% endfor %}
><br/>
{% endfor %}
{% endspaceless %}
{{ class.classType }} {{ class.name }}
</h3>
{% endif %}
{# brief description #}
{% if class.brief and config.REPEAT_BRIEF %}
<p>{{ class.brief }}</p>
{% endif %}
{# detailed docs #}
{{ class.details }}
{# source def #}
{% if class.sourceDef %}
{% markers obj in class.sourceDef with tr.definedAtLineInSourceFile %}
{% with text=obj.text %}
{% include 'htmlobjlink.tpl' %}
{% endwith %}
{% endmarkers %}
{% endif %}
</div><!-- textblock -->
{# table with fields #}
<table class="fieldtable">
<tr><th colspan="3">{{ tr.compoundMembers }}</th></tr>
{% for member in class.members %}
<tr><td class="fieldtype">
<a class="anchor" id="{{ member.anchor }}"></a>{{ member.fieldType }}
</td>
<td class="fieldname">
{{ member.name }}
{% if member.isVariable and member.declArgs %}{{ member.declArgs }}{% endif %}
{{ member.bitfields }}
</td>
<td class="fielddoc">
{% if member.brief and not member.details %}{# only brief #}
{{ member.brief }}
{% else %} {# only details or both #}
{% if member.brief %}<p>{{ member.brief }}</p>{% endif %}
{{ member.details }}
{% endif %}
</td>
</tr>
{% endfor %}
</table>
</div><!-- memdoc -->
</div><!-- memitem -->
{% endfor %}
{% endif %}
|