aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/typesystem.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2021-01-29 11:40:42 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2021-01-29 17:34:57 +0100
commit3507fd23f1f68b509805394713e6e78da986f24a (patch)
treef0009c15810ff955f5b6ac7acbe61c0775b09930 /sources/shiboken6/ApiExtractor/typesystem.h
parente675a51ce48875800c1f9137cedd49144c62af58 (diff)
shiboken6: Implement the force-abstract attribute
Change-Id: Ib445fe0a42b8ab4bc4e1010fc26267471bb80145 Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'sources/shiboken6/ApiExtractor/typesystem.h')
-rw-r--r--sources/shiboken6/ApiExtractor/typesystem.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/shiboken6/ApiExtractor/typesystem.h b/sources/shiboken6/ApiExtractor/typesystem.h
index 93e5e4117..303686757 100644
--- a/sources/shiboken6/ApiExtractor/typesystem.h
+++ b/sources/shiboken6/ApiExtractor/typesystem.h
@@ -486,7 +486,8 @@ class ComplexTypeEntry : public TypeEntry
public:
enum TypeFlag {
DisableWrapper = 0x1,
- Deprecated = 0x4
+ Deprecated = 0x4,
+ ForceAbstract = 0x8
};
Q_DECLARE_FLAGS(TypeFlags, TypeFlag)