aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/tests/testfunctiontag.h
blob: 7c60cb4e0a52b491a79b99ca61b4290a5180ea32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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 TESTFUNCTIONTAG_H
#define TESTFUNCTIONTAG_H

#include <QtCore/QObject>

class TestFunctionTag : public QObject
{
    Q_OBJECT
private slots:
    void testFunctionTagForSpecificSignature();
    void testFunctionTagForAllSignatures();
    void testRenameGlobalFunction();
};

#endif