summaryrefslogtreecommitdiffstats
path: root/test-app/main.cpp
blob: 9d665c12260e362dcd24ec5a2468ebae71c5f2c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: MIT

#include "container_types.h"
#include "core_types.h"
#include "gui_types.h"
#include "network_types.h"
#include "variant_types.h"
#include "widgets_types.h"

#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    auto coreTypes = CoreTypes();

    auto containerTypes = ContainerTypes();

    auto variantTypes = VariantTypes();

    auto networkTypes = NetworkTypes();

    auto guiTypes = GuiTypes();

    auto widgetTypes = WidgetsTypes();

    return 0;
}