diff options
Diffstat (limited to 'src/markdown.h')
-rw-r--r-- | src/markdown.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/markdown.h b/src/markdown.h index a9f80ee..71884d5 100644 --- a/src/markdown.h +++ b/src/markdown.h @@ -28,9 +28,13 @@ class MarkdownFileParser : public ParserInterface { public: virtual ~MarkdownFileParser() {} + void startTranslationUnit(const char *) {} + void finishTranslationUnit() {} void parseInput(const char *fileName, const char *fileBuf, - Entry *root); + Entry *root, + bool sameTranslationUnit, + QStrList &filesInSameTranslationUnit); bool needsPreprocessing(const QCString &) { return FALSE; } void parseCode(CodeOutputInterface &codeOutIntf, const char *scopeName, |