summaryrefslogtreecommitdiffstats
path: root/src/fortranscanner.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fortranscanner.h')
-rw-r--r--src/fortranscanner.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/fortranscanner.h b/src/fortranscanner.h
index 83f7c3e..c70f948 100644
--- a/src/fortranscanner.h
+++ b/src/fortranscanner.h
@@ -28,9 +28,13 @@ class FortranLanguageScanner : public ParserInterface
{
public:
virtual ~FortranLanguageScanner() {}
+ 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 &extension);
void parseCode(CodeOutputInterface &codeOutIntf,
const char *scopeName,