diff options
Diffstat (limited to 'src/filedef.cpp')
-rw-r--r-- | src/filedef.cpp | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/filedef.cpp b/src/filedef.cpp index e35875f..462ee79 100644 --- a/src/filedef.cpp +++ b/src/filedef.cpp @@ -19,7 +19,7 @@ #include "memberlist.h" #include "classlist.h" #include "filedef.h" -#include "scanner.h" +#include "doc.h" #include "doxygen.h" #include "memberdef.h" #include "classdef.h" @@ -29,6 +29,8 @@ #include "outputlist.h" #include "dot.h" #include "message.h" +#include "code.h" +#include "xml.h" /*! create a new file definition, where \a p is the file path, \a the file name, and \a ref is an HTML anchor name if the @@ -355,7 +357,7 @@ void FileDef::writeDocumentation(OutputList &ol) ol.startGroupHeader(); parseText(ol,theTranslator->trDefineDocumentation()); ol.endGroupHeader(); - defineMembers.writeDocumentation(ol,name()); + defineMembers.writeDocumentation(ol,name(),this); } protoMembers.countDocMembers(); @@ -365,7 +367,7 @@ void FileDef::writeDocumentation(OutputList &ol) ol.startGroupHeader(); parseText(ol,theTranslator->trFunctionPrototypeDocumentation()); ol.endGroupHeader(); - protoMembers.writeDocumentation(ol,name()); + protoMembers.writeDocumentation(ol,name(),this); } typedefMembers.countDocMembers(); @@ -375,7 +377,7 @@ void FileDef::writeDocumentation(OutputList &ol) ol.startGroupHeader(); parseText(ol,theTranslator->trTypedefDocumentation()); ol.endGroupHeader(); - typedefMembers.writeDocumentation(ol,name()); + typedefMembers.writeDocumentation(ol,name(),this); } enumMembers.countDocMembers(); @@ -385,7 +387,7 @@ void FileDef::writeDocumentation(OutputList &ol) ol.startGroupHeader(); parseText(ol,theTranslator->trEnumerationTypeDocumentation()); ol.endGroupHeader(); - enumMembers.writeDocumentation(ol,name()); + enumMembers.writeDocumentation(ol,name(),this); } funcMembers.countDocMembers(); @@ -395,7 +397,7 @@ void FileDef::writeDocumentation(OutputList &ol) ol.startGroupHeader(); parseText(ol,theTranslator->trFunctionDocumentation()); ol.endGroupHeader(); - funcMembers.writeDocumentation(ol,name()); + funcMembers.writeDocumentation(ol,name(),this); } varMembers.countDocMembers(); @@ -405,7 +407,7 @@ void FileDef::writeDocumentation(OutputList &ol) ol.startGroupHeader(); parseText(ol,theTranslator->trVariableDocumentation()); ol.endGroupHeader(); - varMembers.writeDocumentation(ol,name()); + varMembers.writeDocumentation(ol,name(),this); } // write Author section (Man only) |