diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2003-05-28 12:47:44 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2003-05-28 12:47:44 (GMT) |
commit | 70b82eced91d2739181f2b700ec04cb14d776d7b (patch) | |
tree | 3e4e50e4fa9b9f0f4c75870e0a09ffc488b34699 /src/docparser.h | |
parent | ecdf7c392922b84a6a1803270104a448e2723c86 (diff) | |
download | Doxygen-70b82eced91d2739181f2b700ec04cb14d776d7b.zip Doxygen-70b82eced91d2739181f2b700ec04cb14d776d7b.tar.gz Doxygen-70b82eced91d2739181f2b700ec04cb14d776d7b.tar.bz2 |
Release-1.3.1
Diffstat (limited to 'src/docparser.h')
-rw-r--r-- | src/docparser.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/docparser.h b/src/docparser.h index 4afafd8..ca9e82e 100644 --- a/src/docparser.h +++ b/src/docparser.h @@ -47,6 +47,7 @@ class SectionDict; * Can be 0. * @param input String representation of the documentation block. * @param isExample TRUE if the documentation belongs to an example. + * @param exampleName Base name of the example file (0 if isExample is FALSE). * @param sections Sections (and anchors) found in the documentation are * collected here (if not 0). * @returns Root node of the abstract syntax tree. Ownership of the @@ -55,7 +56,7 @@ class SectionDict; DocNode *validatingParseDoc(const char *fileName,int startLine, const char *context, MemberDef *md, const char *input,bool isExample, - SectionDict *sections=0); + const char *exampleName=0,SectionDict *sections=0); /*! Main entry point for parsing simple text fragments. These * fragments are limited to words, whitespace and symbols. |