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 -%}
|