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

Concept {{ concept.title|e }}
{{ sections.brief(concept) }}

{{ sections.top_box(concept) }} {% if concept.internals or concept.deprecation_msgs or concept.warnings or concept.notes or concept.akas or not concept.body.empty %}

Detailed Description

{% if concept.internals %}
Internal:

For internal use only.

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

{{ msg|transtext(False) }}

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

{{ msg|transtext(False) }}

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

{{ msg|transtext(False) }}

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

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

{% endif %} {{ sections.body(concept) }}
{% endif %} {{ sections.see_also(concept) }} {{ sections.member_functions_ov(concept, doc) }} {{ sections.interface_functions_ov(concept, doc) }} {{ sections.interface_metafunctions_ov(concept, doc) }} {{ sections.member_variables_ov(concept, doc) }} {{ sections.member_functions(concept) }} {{ sections.interface_functions(concept) }} {{ sections.interface_metafunctions(concept) }} {{ sections.member_variables(concept) }} {{ sections.dox_source(concept, in_comment=True) }} {% endblock %}