summaryrefslogtreecommitdiffstats
path: root/src/docparser.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2003-05-28 12:47:44 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2003-05-28 12:47:44 (GMT)
commit35c2baedaa68519999af733a87d8e6ff9a89358c (patch)
tree3e4e50e4fa9b9f0f4c75870e0a09ffc488b34699 /src/docparser.h
parent9e1745a1714d4ece7d490918de2eb7ff2060453e (diff)
downloadDoxygen-35c2baedaa68519999af733a87d8e6ff9a89358c.zip
Doxygen-35c2baedaa68519999af733a87d8e6ff9a89358c.tar.gz
Doxygen-35c2baedaa68519999af733a87d8e6ff9a89358c.tar.bz2
Release-1.3.1
Diffstat (limited to 'src/docparser.h')
-rw-r--r--src/docparser.h3
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.