diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-06-09 19:58:49 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-06-09 19:58:49 (GMT) |
commit | d863498bbf7129c5d7f4984ca00adf378aac246d (patch) | |
tree | bc980e351fc747c41720cca5f31affe4f27c3a31 /src/index.h | |
parent | 0aa47e2a30513b04d1041d528f468d3434a81558 (diff) | |
download | Doxygen-d863498bbf7129c5d7f4984ca00adf378aac246d.zip Doxygen-d863498bbf7129c5d7f4984ca00adf378aac246d.tar.gz Doxygen-d863498bbf7129c5d7f4984ca00adf378aac246d.tar.bz2 |
Release-1.3.1-20030609
Diffstat (limited to 'src/index.h')
-rw-r--r-- | src/index.h | 27 |
1 files changed, 23 insertions, 4 deletions
diff --git a/src/index.h b/src/index.h index f6d546e..c4e8f8d 100644 --- a/src/index.h +++ b/src/index.h @@ -69,25 +69,44 @@ void writePackageIndex(OutputList &ol); void countDataStructures(); +#if 0 extern int annotatedClasses; extern int hierarchyClasses; extern int documentedFunctions; extern int documentedMembers; extern int documentedDefines; extern int documentedFiles; -extern int documentedHtmlFiles; extern int documentedGroups; extern int documentedNamespaces; extern int documentedNamespaceMembers; extern int documentedIncludeFiles; -extern int documentedPages; extern int indexedPages; -//extern int documentedPackages; +#endif +extern int documentedHtmlFiles; +extern int documentedPages; + +enum HighlightedItem +{ + HLI_None=0, + HLI_Main, + HLI_Modules, + HLI_Namespaces, + HLI_Hierarchy, + HLI_Classes, + HLI_Annotated, + HLI_Files, + HLI_NamespaceMembers, + HLI_Functions, + HLI_Globals, + HLI_Pages, + HLI_Examples, + HLI_Search +}; void startTitle(OutputList &ol,const char *fileName); void endTitle(OutputList &ol,const char *fileName,const char *name); void startFile(OutputList &ol,const char *name,const char *manName, - const char *title,bool external=FALSE); + const char *title,bool external=FALSE,HighlightedItem hli=HLI_None); void endFile(OutputList &ol,bool external=FALSE); #endif |