-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathkind_class.tmpl
More file actions
40 lines (24 loc) · 1.26 KB
/
Copy pathkind_class.tmpl
File metadata and controls
40 lines (24 loc) · 1.26 KB
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
{% include "header" -%}
{% include "breadcrumbs" %}
{% if exists("brief") %}{{brief}}
{% endif -%}
{% if exists("includes") %}
`#include {{includes}}`
{% endif -%}
{%- if exists("baseClasses") %}Inherits from {% for child in baseClasses %}{% if existsIn(child, "url") %}[{{child.name}}]({{child.url}}){% else %}{{child.name}}{% endif %}{% if not loop.is_last %}, {% endif %}{% endfor %}
{% endif -%}
{%- if exists("derivedClasses") %}Inherited by {% for child in derivedClasses %}{% if existsIn(child, "url") %}[{{child.name}}]({{child.url}}){% else %}{{child.name}}{% endif %}{% if not loop.is_last %}, {% endif %}{% endfor %}
{% endif -%}
{%- include "class_members_tables" -%}
{% if hasAdditionalMembers %}## Additional inherited members
{% include "class_members_inherited_tables" %}
{% endif -%}
{% if hasDetails %}## Detailed Description
```cpp{% if exists("templateParams") %}
template <{% for param in templateParams %}{{param.typePlain}} {{param.name}}{% if existsIn(param, "defvalPlain") %} ={{param.defvalPlain}}{% endif %}{% if not loop.is_last %},
{% endif %}{% endfor %}>{% endif %}
{% if kind == "interface" %}class{% else %}{{kind}}{% endif %} {{name}};
```
{% include "details" %}{% endif -%}
{% include "class_members_details" -%}
{% include "footer" %}