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

#ifndef DEPENDENCY_H
#define DEPENDENCY_H

#include <QtCore/QList>

#include <utility>

// Dependencies for topologically sorting classes

class AbstractMetaClass;

struct Dependency {
    AbstractMetaClass *parent;
    AbstractMetaClass *child;
};

using Dependencies = QList<Dependency>;

#endif // DEPENDENCY_H