summaryrefslogtreecommitdiffstats
path: root/src/classlist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/classlist.cpp')
-rw-r--r--src/classlist.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/classlist.cpp b/src/classlist.cpp
index 68436d4..f62ff36 100644
--- a/src/classlist.cpp
+++ b/src/classlist.cpp
@@ -21,6 +21,7 @@
#include "outputlist.h"
#include "language.h"
#include "doc.h"
+#include "doxygen.h"
ClassList::ClassList() : QList<ClassDef>()
{
@@ -68,6 +69,10 @@ void ClassList::writeDeclaration(OutputList &ol)
ol.startMemberList();
found=TRUE;
}
+ if (!Config::genTagFile.isEmpty())
+ {
+ tagFile << " <class>" << convertToXML(cd->name()) << "</class>" << endl;
+ }
ol.startMemberItem(FALSE);
switch (cd->compoundType())
{