summaryrefslogtreecommitdiffstats
path: root/src/parserintf.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2012-08-11 13:06:22 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2012-08-11 13:06:22 (GMT)
commit34cc61be7d0f6dafcaaa5fcdaa98ce4d31014634 (patch)
treead481e345a35820f0142bb774556afc6de0d00fa /src/parserintf.h
parent3583a7c0bea47665a06d14a64b62376eee21c528 (diff)
downloadDoxygen-34cc61be7d0f6dafcaaa5fcdaa98ce4d31014634.zip
Doxygen-34cc61be7d0f6dafcaaa5fcdaa98ce4d31014634.tar.gz
Doxygen-34cc61be7d0f6dafcaaa5fcdaa98ce4d31014634.tar.bz2
Release-1.8.2
Diffstat (limited to 'src/parserintf.h')
-rw-r--r--src/parserintf.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/parserintf.h b/src/parserintf.h
index db22088..7211274 100644
--- a/src/parserintf.h
+++ b/src/parserintf.h
@@ -24,6 +24,7 @@ class Entry;
class FileDef;
class CodeOutputInterface;
class MemberDef;
+class Definition;
/** \brief Abstract interface for programming language parsers.
*
@@ -70,6 +71,7 @@ class ParserInterface
* 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
+ * @param[in] searchCtx context under which search data has to be stored.
*/
virtual void parseCode(CodeOutputInterface &codeOutIntf,
const char *scopeName,
@@ -81,7 +83,8 @@ class ParserInterface
int endLine=-1,
bool inlineFragment=FALSE,
MemberDef *memberDef=0,
- bool showLineNumbers=TRUE
+ bool showLineNumbers=TRUE,
+ Definition *searchCtx=0
) = 0;
/** Resets the state of the code parser.