aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/usingmember.h
blob: ed362688d8a44eab63f7b4e5b55c44bc5b34732e (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;
    const AbstractMetaClass *baseClass;
    Access access;
};

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

#endif // USINGMEMBER_H