summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_qt_manual_moc/testclass1.h
blob: 84fc656f1a4468b83e21f758c71494014f52038b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef TESTCLASS_H
#define TESTCLASS_H

#include <QObject>

class TestClass : public QObject
{
    Q_OBJECT

public:
    TestClass(QObject *parent = nullptr);
};

#endif // TESTCLASS_H