aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/ApiExtractor/apiextractor.h
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken2/ApiExtractor/apiextractor.h')
-rw-r--r--sources/shiboken2/ApiExtractor/apiextractor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sources/shiboken2/ApiExtractor/apiextractor.h b/sources/shiboken2/ApiExtractor/apiextractor.h
index ab520c9de..3eb90e748 100644
--- a/sources/shiboken2/ApiExtractor/apiextractor.h
+++ b/sources/shiboken2/ApiExtractor/apiextractor.h
@@ -66,6 +66,7 @@ public:
void setCppFileName(const QString& cppFileName);
QString cppFileName() const { return m_cppFileName; }
void setDebugLevel(ReportHandler::DebugLevel debugLevel);
+ void setSkipDeprecated(bool value);
void setSuppressWarnings(bool value);
void setSilent(bool value);
void addTypesystemSearchPath(const QString& path);
@@ -99,6 +100,7 @@ private:
AbstractMetaBuilder* m_builder;
QString m_logDirectory;
LanguageLevel m_languageLevel = LanguageLevel::Default;
+ bool m_skipDeprecated = false;
// disable copy
ApiExtractor(const ApiExtractor&);