File: class_members_details.tmpl

package info (click to toggle)
libthrust 1.17.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 10,900 kB
  • sloc: ansic: 29,519; cpp: 23,989; python: 1,421; sh: 811; perl: 460; makefile: 112
file content (49 lines) | stat: -rw-r--r-- 1,507 bytes parent folder | download | duplicates (2)
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
{%- if exists("publicClasses") -%}## Member Classes

  {%- for child in publicClasses -%}
    {% include "title_member.tmpl" %}
    {{- render("member_details.tmpl", child) -}}
  {%- endfor %}
{%- endif -%}
{%- if exists("publicTypes") -%}## Member Types

  {%- for child in publicTypes -%}
    {% include "title_member.tmpl" %}
    {{- render("member_details.tmpl", child) -}}
  {%- endfor %}
{%- endif -%}
{%- if exists("publicAttributes") %}## Member Variables

  {%- for child in publicAttributes -%}
    {% include "title_member.tmpl" %}
    {{- render("member_details.tmpl", child) -}}
  {%- endfor %}
{%- endif -%}
{%- if exists("publicFunctions") %}## Member Functions

  {%- for child in publicFunctions -%}
    {% include "title_member.tmpl" %}
    {{- render("member_details.tmpl", child) -}}
  {%- endfor %}
{%- endif -%}
{%- if exists("protectedTypes") -%}## Protected Member Types
  {%- for child in publicTypes -%}
    {% include "title_member.tmpl" %}
    {{- render("member_details.tmpl", child) -}}
  {%- endfor %}
{% endif -%}
{%- if exists("protectedAttributes") -%}## Protected Member Variables

  {%- for child in protectedAttributes -%}
    {% include "title_member.tmpl" %}
    {{- render("member_details.tmpl", child) -}}
  {%- endfor %}
{%- endif -%}
{%- if exists("protectedFunctions") -%}## Protected Member Functions

  {%- for child in protectedFunctions -%}
    {% include "title_member.tmpl" %}
    {{- render("member_details.tmpl", child) -}}
  {%- endfor %}
{%- endif -%}