diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-09-27 17:06:31 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-09-27 17:06:31 (GMT) |
commit | 5ed55684b0226c2371f1d39cd7f984da44c9ccb1 (patch) | |
tree | f0751a83dd63c0dc8f76a3cd2044acf074e860a2 /src/mangen.cpp | |
parent | 482b6bd47a106e132ff06bb410e87c8e0da643d2 (diff) | |
download | Doxygen-5ed55684b0226c2371f1d39cd7f984da44c9ccb1.zip Doxygen-5ed55684b0226c2371f1d39cd7f984da44c9ccb1.tar.gz Doxygen-5ed55684b0226c2371f1d39cd7f984da44c9ccb1.tar.bz2 |
Release-1.2.18-20020927
Diffstat (limited to 'src/mangen.cpp')
-rw-r--r-- | src/mangen.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mangen.cpp b/src/mangen.cpp index 6464790..bf99072 100644 --- a/src/mangen.cpp +++ b/src/mangen.cpp @@ -29,6 +29,7 @@ #include "doxygen.h" #include <string.h> #include "docparser.h" +#include "mandocvisitor.h" static QCString getExtension() { @@ -613,7 +614,10 @@ void ManGenerator::endParamList() { } -void ManGenerator::printDoc(DocNode *) +void ManGenerator::printDoc(DocNode *n) { + ManDocVisitor *visitor = new ManDocVisitor(t,*this); + n->accept(visitor); + delete visitor; } |