aboutsummaryrefslogtreecommitdiffstats
path: root/ApiExtractor/typesystem_typedefs.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2017-03-29 12:44:43 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2017-04-06 08:36:07 +0000
commit4517c70f43a6eac7aae0d632320ca127837011f5 (patch)
treed977d79e1802ec5afa0d2b670cfe19e43e6aaf61 /ApiExtractor/typesystem_typedefs.h
parent69d28aa054cb43cbc0f68b2cc18fbedcbca1e0d5 (diff)
TypeDatabase: Replace QList by QVector
QList will be deprecated in Qt. Split out a new header typedatabase_typedefs.h with typedefs from typesystem_typedefs.h. Change-Id: I15fc1f7edcdc682c32b2e9b935858681e02d35c6 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'ApiExtractor/typesystem_typedefs.h')
-rw-r--r--ApiExtractor/typesystem_typedefs.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/ApiExtractor/typesystem_typedefs.h b/ApiExtractor/typesystem_typedefs.h
index 4849ee371..4f29deced 100644
--- a/ApiExtractor/typesystem_typedefs.h
+++ b/ApiExtractor/typesystem_typedefs.h
@@ -34,26 +34,16 @@
#include <QtCore/QVector>
class CodeSnip;
-class ContainerTypeEntry;
class DocModification;
-class PrimitiveTypeEntry;
-class TemplateEntry;
-class TypeEntry;
struct AddedFunction;
struct FieldModification;
struct FunctionModification;
-typedef QHash<QString, QList<TypeEntry *> > TypeEntryHash;
-typedef QHash<QString, TypeEntry *> SingleTypeEntryHash;
-typedef QHash<QString, TemplateEntry *> TemplateEntryHash;
-
typedef QVector<AddedFunction> AddedFunctionList;
typedef QVector<CodeSnip> CodeSnipList;
-typedef QList<const ContainerTypeEntry *> ContainerTypeEntryList;
typedef QVector<DocModification> DocModificationList;
typedef QVector<FieldModification> FieldModificationList;
typedef QVector<FunctionModification> FunctionModificationList;
-typedef QList<const PrimitiveTypeEntry *> PrimitiveTypeEntryList;
#endif // TYPESYSTEM_TYPEDEFS_H