summaryrefslogtreecommitdiffstats
path: root/src/outputlist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/outputlist.cpp')
-rw-r--r--src/outputlist.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/outputlist.cpp b/src/outputlist.cpp
index d0a2114..7374aff 100644
--- a/src/outputlist.cpp
+++ b/src/outputlist.cpp
@@ -27,6 +27,8 @@
#include "config.h"
#include "message.h"
+#include "docparser.h"
+
OutputList::OutputList(bool)
{
//printf("OutputList::OutputList()\n");
@@ -189,6 +191,23 @@ void OutputList::popGeneratorState()
}
}
+void OutputList::parseDoc(const char *fileName,int startLine,
+ const char * clName,MemberDef * /*md*/,
+ const QCString &docStr)
+{
+ DocNode *root = validatingParseDoc(fileName,startLine,clName,docStr);
+
+ OutputGenerator *og=outputs->first();
+ while (og)
+ {
+ if (og->isEnabled()) og->printDoc(root);
+ og=outputs->next();
+ }
+
+ delete root;
+}
+
+
//--------------------------------------------------------------------------
// Create some overloaded definitions of the forall function.
// Using template functions here would have made it a little less