diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2021-04-08 19:18:07 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2021-04-08 19:23:43 (GMT) |
commit | e03e2a29f9279deabe62d795b0db925a982d0eef (patch) | |
tree | 8e0254cd7ea40d93489037f53d6f42d1619358c6 /templates/xml | |
parent | a9e4a9e5b51ab33df64f3989c710e08546dcd45d (diff) | |
download | Doxygen-e03e2a29f9279deabe62d795b0db925a982d0eef.zip Doxygen-e03e2a29f9279deabe62d795b0db925a982d0eef.tar.gz Doxygen-e03e2a29f9279deabe62d795b0db925a982d0eef.tar.bz2 |
issue #2732: Adding support for C++ concepts (Origin: bugzilla #499352)
Diffstat (limited to 'templates/xml')
-rw-r--r-- | templates/xml/compound.xsd | 4 | ||||
-rw-r--r-- | templates/xml/index.xsd | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/templates/xml/compound.xsd b/templates/xml/compound.xsd index 400bea5..c128140 100644 --- a/templates/xml/compound.xsd +++ b/templates/xml/compound.xsd @@ -33,6 +33,8 @@ <xsd:element name="templateparamlist" type="templateparamlistType" minOccurs="0" /> <xsd:element name="sectiondef" type="sectiondefType" minOccurs="0" maxOccurs="unbounded" /> <xsd:element name="tableofcontents" type="tableofcontentsType" minOccurs="0" maxOccurs="1" /> + <xsd:element name="requiresclause" type="linkedTextType" minOccurs="0" /> + <xsd:element name="initializer" type="linkedTextType" minOccurs="0" /> <xsd:element name="briefdescription" type="descriptionType" minOccurs="0" /> <xsd:element name="detaileddescription" type="descriptionType" minOccurs="0" /> <xsd:element name="inheritancegraph" type="graphType" minOccurs="0" /> @@ -147,6 +149,7 @@ <xsd:element name="reimplementedby" type="reimplementType" minOccurs="0" maxOccurs="unbounded" /> <xsd:element name="param" type="paramType" minOccurs="0" maxOccurs="unbounded" /> <xsd:element name="enumvalue" type="enumvalueType" minOccurs="0" maxOccurs="unbounded" /> + <xsd:element name="requiresclause" type="linkedTextType" minOccurs="0" /> <xsd:element name="initializer" type="linkedTextType" minOccurs="0" /> <xsd:element name="exceptions" type="linkedTextType" minOccurs="0" /> <xsd:element name="briefdescription" type="descriptionType" minOccurs="0" /> @@ -815,6 +818,7 @@ <xsd:enumeration value="page" /> <xsd:enumeration value="example" /> <xsd:enumeration value="dir" /> + <xsd:enumeration value="concept" /> </xsd:restriction> </xsd:simpleType> diff --git a/templates/xml/index.xsd b/templates/xml/index.xsd index edb1d34..cfb7041 100644 --- a/templates/xml/index.xsd +++ b/templates/xml/index.xsd @@ -45,6 +45,7 @@ <xsd:enumeration value="example"/> <xsd:enumeration value="dir"/> <xsd:enumeration value="type"/> + <xsd:enumeration value="concept"/> </xsd:restriction> </xsd:simpleType> |