summaryrefslogtreecommitdiffstats
path: root/src/filedef.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-08-06 15:11:00 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-08-06 15:11:00 (GMT)
commitc4ef46195917656ebebed63e3fab5c135d9905a2 (patch)
treeaa501b0916e827fee6032245628509acc64efbba /src/filedef.cpp
parent5ad8b41eb93b9ca6a4c2ce90837103f8a4e750d8 (diff)
downloadDoxygen-c4ef46195917656ebebed63e3fab5c135d9905a2.zip
Doxygen-c4ef46195917656ebebed63e3fab5c135d9905a2.tar.gz
Doxygen-c4ef46195917656ebebed63e3fab5c135d9905a2.tar.bz2
Release-1.2.0-20000806
Diffstat (limited to 'src/filedef.cpp')
-rw-r--r--src/filedef.cpp16
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)