aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/typedatabase_p.h
blob: 4d16040cf8c1a9de60143a798b8b07adcb17653a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef TYPEDATABASE_P_H
#define TYPEDATABASE_P_H

#include <QtCore/QHash>
#include <QtCore/QString>

class TypeDatabase;
class SmartPointerTypeEntry;

struct TypeDatabaseParserContext
{
    using SmartPointerInstantiations = QHash<SmartPointerTypeEntry *, QString>;

    TypeDatabase *db;
    SmartPointerInstantiations smartPointerInstantiations;
};

#endif // TYPEDATABASE_P_H