summaryrefslogtreecommitdiff
path: root/src/parserintf.h
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2021-10-15 10:46:54 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2021-10-15 10:46:54 +0900
commit835421dad74e8989002b592f703a23d87f211df0 (patch)
treeeea52c11485e8bd8c67d217390f346d7ff392a2b /src/parserintf.h
parentb7b8bd24feb1363d7d84d030b9ea688fe2f149de (diff)
downloaddoxygen-835421dad74e8989002b592f703a23d87f211df0.tar.gz
doxygen-835421dad74e8989002b592f703a23d87f211df0.tar.bz2
doxygen-835421dad74e8989002b592f703a23d87f211df0.zip
Imported Upstream version 1.8.5upstream/1.8.5
Diffstat (limited to 'src/parserintf.h')
-rw-r--r--src/parserintf.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/parserintf.h b/src/parserintf.h
index 0274c13..40c82dc 100644
--- a/src/parserintf.h
+++ b/src/parserintf.h
@@ -21,6 +21,8 @@
#include <qdict.h>
#include <qstrlist.h>
+#include "types.h"
+
class Entry;
class FileDef;
class CodeOutputInterface;
@@ -79,6 +81,7 @@ class ParserInterface
/** Parses a source file or fragment with the goal to produce
* highlighted and cross-referenced output.
* @param[in] codeOutIntf Abstract interface for writing the result.
+ * @param[in] lang The programming language of the code fragment.
* @param[in] scopeName Name of scope to which the code belongs.
* @param[in] input Actual code in the form of a string
* @param[in] isExampleBlock TRUE iff the code is part of an example.
@@ -99,6 +102,7 @@ class ParserInterface
virtual void parseCode(CodeOutputInterface &codeOutIntf,
const char *scopeName,
const QCString &input,
+ SrcLangExt lang,
bool isExampleBlock,
const char *exampleName=0,
FileDef *fileDef=0,