diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2004-12-06 18:20:45 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2004-12-06 18:20:45 (GMT) |
commit | b6ef778f99fb691dc98832a43bd14cbd7e23d820 (patch) | |
tree | db6a4cf330b3c7b7dc387321cabe709ba675e957 /src/docparser.h | |
parent | 02aa9b678dbeb1867c68278045b28d7bc1683f7c (diff) | |
download | Doxygen-b6ef778f99fb691dc98832a43bd14cbd7e23d820.zip Doxygen-b6ef778f99fb691dc98832a43bd14cbd7e23d820.tar.gz Doxygen-b6ef778f99fb691dc98832a43bd14cbd7e23d820.tar.bz2 |
Doxygen-1.3.9.1-20041206
Diffstat (limited to 'src/docparser.h')
-rw-r--r-- | src/docparser.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/docparser.h b/src/docparser.h index 1b4333b..241ea6d 100644 --- a/src/docparser.h +++ b/src/docparser.h @@ -53,7 +53,9 @@ void initDocParser(); * @param exampleName Base name of the example file (0 if isExample is FALSE). * @param singleLine Output should be presented on a single line, so without * starting a new paragraph at the end. - * @param isParam TRUE if the documentation is for a parameter. + * @param linkFromIndex TRUE if the documentation is generated from an + * index page. In this case context is not used to determine + * the relative path when making a link. * @returns Root node of the abstract syntax tree. Ownership of the * pointer is handed over to the caller. */ @@ -61,7 +63,7 @@ DocNode *validatingParseDoc(const char *fileName,int startLine, Definition *context, MemberDef *md, const char *input,bool indexWords, bool isExample,const char *exampleName=0, - bool singleLine=FALSE,bool isParam=FALSE); + bool singleLine=FALSE,bool linkFromIndex=FALSE); /*! Main entry point for parsing simple text fragments. These * fragments are limited to words, whitespace and symbols. |