diff options
Diffstat (limited to 'src/parserintf.h')
-rw-r--r-- | src/parserintf.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/parserintf.h b/src/parserintf.h index 602e40c..a7568fb 100644 --- a/src/parserintf.h +++ b/src/parserintf.h @@ -68,6 +68,8 @@ class ParserInterface * @param[in] memberDef Member definition to which the code * is associated (non null in case of an inline fragment * for a member). + * @param[in] showLineNumbers if set to TRUE and also fileDef is not 0, + * line numbers will be added to the source fragement */ virtual void parseCode(CodeOutputInterface &codeOutIntf, const char *scopeName, @@ -78,7 +80,8 @@ class ParserInterface int startLine=-1, int endLine=-1, bool inlineFragment=FALSE, - MemberDef *memberDef=0 + MemberDef *memberDef=0, + bool showLineNumbers=TRUE ) = 0; /** Resets the state of the code parser. |