summaryrefslogtreecommitdiffstats
path: root/src/index.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-04-08 19:18:07 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-04-08 19:23:43 (GMT)
commite03e2a29f9279deabe62d795b0db925a982d0eef (patch)
tree8e0254cd7ea40d93489037f53d6f42d1619358c6 /src/index.h
parenta9e4a9e5b51ab33df64f3989c710e08546dcd45d (diff)
downloadDoxygen-e03e2a29f9279deabe62d795b0db925a982d0eef.zip
Doxygen-e03e2a29f9279deabe62d795b0db925a982d0eef.tar.gz
Doxygen-e03e2a29f9279deabe62d795b0db925a982d0eef.tar.bz2
issue #2732: Adding support for C++ concepts (Origin: bugzilla #499352)
Diffstat (limited to 'src/index.h')
-rw-r--r--src/index.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/index.h b/src/index.h
index 8b090dc..a595ec2 100644
--- a/src/index.h
+++ b/src/index.h
@@ -119,6 +119,7 @@ enum IndexSections
isModuleIndex,
isDirIndex,
isNamespaceIndex,
+ isConceptIndex,
isClassHierarchyIndex,
isCompoundIndex,
isFileIndex,
@@ -127,6 +128,7 @@ enum IndexSections
isDirDocumentation,
isNamespaceDocumentation,
isClassDocumentation,
+ isConceptDocumentation,
isFileDocumentation,
isExampleDocumentation,
isPageDocumentation,
@@ -145,6 +147,7 @@ enum HighlightedItem
HLI_InterfaceHierarchy,
HLI_ExceptionHierarchy,
HLI_Classes,
+ HLI_Concepts,
HLI_Interfaces,
HLI_Structs,
HLI_Exceptions,
@@ -162,6 +165,7 @@ enum HighlightedItem
HLI_UserGroup,
HLI_ClassVisible,
+ HLI_ConceptVisible,
HLI_InterfaceVisible,
HLI_StructVisible,
HLI_ExceptionVisible,
@@ -238,6 +242,7 @@ extern int hierarchyExceptions;
extern int documentedFiles;
extern int documentedGroups;
extern int documentedNamespaces;
+extern int documentedConcepts;
extern int indexedPages;
extern int documentedClassMembers[CMHL_Total];
extern int documentedFileMembers[FMHL_Total];