@@ -5,40 +5,24 @@ implements: True
55---
66{% filter indent (config .get ('indent_level' , 0), True ) %}
77
8- # {{node.kind.value|title}} {{node.name_long}}
8+ ## {{node.name_long}}
99{% if node .has_templateparams %}
1010**template < ; {{node.templateparams}}> ; **
1111{% endif %}
1212
13-
14- [**{{node.base_name}}**]({{node.base_url}})
15- {% - for parent in node .parents -%}
16- {{'**>**'|indent(1, true)}} [**{{parent.name_long if node.is_group else parent.name_short}}**]({{parent.url}})
17- {% - endfor %}
18-
19- {% if node .is_file and node .has_programlisting -%}
20- [Go to the source code of this file]({{node.url_source}})
21- {% - endif %}
22-
23- {{node.brief}}
24- {% - if node .has_details -%}
25- [More...](#detailed-description)
26- {% - endif %}
27-
28- {% if node .has_includes -%}
29- {% - for include in node .includes -%}
30- * `#include {{include}}`
31- {% endfor -%}
32- {% - endif %}
33-
3413{% if node .has_base_classes %}
35- Inherits the following classes :
14+ Bases :
3615{% - for base in node .base_classes -%}
37- {% - if base is string %} {{base}}{% - else %} [{{base.name_long}}]({{base.url}}){% - endif -%}
16+ {% - if base is string %} ` {{base}}` {% - else %} [` {{base.name_long}}` ]({{base.url}}){% - endif -%}
3817{{ ', ' if not loop.last else '' }}
3918{% - endfor -%}
4019{% - endif %}
4120
21+ {{node._brief.plain()}}
22+ {% - if node .has_details -%}
23+ [More...](#detailed-description)
24+ {% - endif %}
25+
4226{% if node .has_derived_classes %}
4327Inherited by the following classes:
4428{% - for derived in node .derived_classes -%}
@@ -86,25 +70,4 @@ Inherited by the following classes:
8670{% - endfor -%}
8771{% - endfor -%}
8872
89- {% - if node .has ('public' , ['define' ], False ) %}
90- ## Macro Definition Documentation
91-
92- {% for member in node .query ('public' , ['define' ], False ) -%}
93- {{ templateMemDef.render({'config': {}, 'node': member, 'configMemDef': configMemDef}) }}
94- {% - endfor -%}
95- {% - endif %}
96-
97- {% - if node .has ('public' , ['friend' ], False ) -%}
98- ## Friends Documentation
99-
100- {% for member in node .query ('public' , ['friend' ], False ) -%}
101- {{ templateMemDef.render({'config': {}, 'node': member, 'configMemDef': configMemDef}) }}
102- {% - endfor %}
103- {% - endif %}
104-
105- ------------------------------
106- {% if node .has_location -%}
107- The documentation for this class was generated from the following file `{{node.location}}`
108- {% - endif %}
109-
11073{% endfilter %}
0 commit comments