summaryrefslogtreecommitdiffstats
path: root/src/pyscanner.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pyscanner.h')
-rw-r--r--src/pyscanner.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/pyscanner.h b/src/pyscanner.h
index 8a6971f..707edbd 100644
--- a/src/pyscanner.h
+++ b/src/pyscanner.h
@@ -35,9 +35,13 @@ class PythonLanguageScanner : public ParserInterface
{
public:
virtual ~PythonLanguageScanner() {}
+ 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,