aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/typesystem.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2021-07-20 10:30:30 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2021-07-20 19:20:28 +0200
commit8fb6d4a24b594e0ef8f41987759529025f4cd015 (patch)
treed8fcb1cb3916674e61a856ac63d508d715659c2c /sources/shiboken6/ApiExtractor/typesystem.h
parentbace73605d2e0483c6f8990452e701efdf4d5675 (diff)
shiboken6: Simplify the container types
Remove the sequence types that are equivalent to list. Remove the hash types that are equivalent to map. Remove some functions that were left-over from Java. Task-number: PYSIDE-1605 Change-Id: If28344d39d44ac7ccf25dbc12a3a60a3693fc67d Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'sources/shiboken6/ApiExtractor/typesystem.h')
-rw-r--r--sources/shiboken6/ApiExtractor/typesystem.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/sources/shiboken6/ApiExtractor/typesystem.h b/sources/shiboken6/ApiExtractor/typesystem.h
index bd3d2c189..fada1fea3 100644
--- a/sources/shiboken6/ApiExtractor/typesystem.h
+++ b/sources/shiboken6/ApiExtractor/typesystem.h
@@ -623,16 +623,9 @@ class ContainerTypeEntry : public ComplexTypeEntry
public:
enum ContainerKind {
ListContainer,
- StringListContainer,
- LinkedListContainer,
- VectorContainer,
- StackContainer,
- QueueContainer,
SetContainer,
MapContainer,
MultiMapContainer,
- HashContainer,
- MultiHashContainer,
PairContainer,
};
Q_ENUM(ContainerKind)
@@ -642,9 +635,6 @@ public:
ContainerKind containerKind() const;
- QString typeName() const;
- QString qualifiedCppName() const override;
-
TypeEntry *clone() const override;
#ifndef QT_NO_DEBUG_STREAM