aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/dependency.h
blob: aa280de032105274615e09f3da0cd50fa5d64590 (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 {
    AbstractMetaClassPtr parent;
    AbstractMetaClassPtr child;
};

using Dependencies = QList<Dependency>;

#endif // DEPENDENCY_H