diff options
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r-- | src/classdef.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp index 315e7aa..8ea85c2 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -35,6 +35,7 @@ #include "defargs.h" #include "debug.h" #include "docparser.h" +#include "searchindex.h" // constructs a new class definition @@ -850,6 +851,12 @@ void ClassDef::writeDocumentation(OutputList &ol) addGroupListToTitle(ol,this); endTitle(ol,getOutputFileBase(),name()); + if (Config_getBool("SEARCHENGINE")) + { + Doxygen::searchIndex->setCurrentDoc(pageTitle,getOutputFileBase()); + Doxygen::searchIndex->addWord(localName().lower()); + } + ol.startTextBlock(); //printf("Class %s brief=`%s' doc=`%s'\n",name().data(),briefDescription().data(),documentation().data()); |