aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/learning/overviewwelcomepage.h
blob: f85ebe9684dc96de73c1d631a2a3b31948f8e3b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include <QObject>

namespace Learning::Internal {

void setupOverviewWelcomePage(QObject *guard);

#ifdef WITH_TESTS
class LearningTest final : public QObject {
    Q_OBJECT
private slots:
    void testFlagsMatching();
    void testFlagsMatching_data();
};
#endif // WITH_TESTS

} // namespace Learning::Internal