summaryrefslogtreecommitdiffstats
path: root/examples/widgets/itemviews/coloreditorfactory/main.cpp
blob: c4339e22c17ffe1a6d2fea7d5fccd0b54a353825 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include <QtWidgets>

#include "window.h"

int main(int argv, char **args)
{
    QApplication app(argv, args);

    Window window;
    window.show();

    return app.exec();
}