{% extends "base.html" %} {% block title %}{{ group.title|e }}{% endblock %} {% block content %}

Group {{ group.title|e }}
{{ sections.brief(group) }}

{{ sections.grouped_tags_ov(group, doc, 'Grouped') }} {{ sections.grouped_macros_ov(group, doc, 'Grouped') }} {{ sections.interface_functions_ov(group, doc, 'Grouped') }} {{ sections.interface_metafunctions_ov(group, doc, 'Grouped') }} {% if group.internals or group.deprecation_msgs or group.warnings or group.notes or group.akas or not group.body.empty %}

Detailed Description

{% if group.internals %}
Internal:

For internal use only.

{% endif %} {% if group.deprecation_msgs %} {% for msg in group.deprecation_msgs %}
Deprecated.

{{ msg|transtext(False) }}

{% endfor %} {% endif %} {% if group.warnings %} {% for msg in group.warnings %}
Warning:

{{ msg|transtext(False) }}

{% endfor %} {% endif %} {% if group.notes %} {% for msg in group.notes %}
Note:

{{ msg|transtext(False) }}

{% endfor %} {% endif %} {% if group.akas %}
Also known as:

{{ group.akas|join(', ') }}

{% endif %} {{ sections.body(group) }}
{% endif %} {{ sections.see_also(group) }} {{ sections.grouped_tags(group, 'Grouped') }} {{ sections.grouped_macros(group, 'Grouped') }} {{ sections.interface_functions(group, 'Grouped') }} {{ sections.interface_metafunctions(group, 'Grouped') }} {{ sections.dox_source(group, in_comment=True) }} {% endblock %}