aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/tests/testdtorinformation.h
blob: 0f8cb59b3b337f45517ac2b51c240e3e68ad9d65 (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) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef TESTDTORINFORMATION_H
#define TESTDTORINFORMATION_H

#include <QtCore/QObject>

class AbstractMetaBuilder;

class TestDtorInformation: public QObject
{
    Q_OBJECT
private slots:
    void testDtorIsPrivate();
    void testDtorIsProtected();
    void testDtorIsVirtual();
    void testDtorFromBaseIsVirtual();
    void testClassWithVirtualDtorIsPolymorphic();
};

#endif // TESTDTORINFORMATION_H