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

#ifndef USINGMEMBER_H
#define USINGMEMBER_H

#include "abstractmetalang_typedefs.h"
#include "parser/codemodel_enums.h"

QT_FORWARD_DECLARE_CLASS(QDebug)

struct UsingMember // Introducing a base class member via 'using' directive
{
    QString memberName;
    AbstractMetaClassCPtr baseClass;
    Access access;
};

QDebug operator<<(QDebug debug, const UsingMember &d);

#endif // USINGMEMBER_H