2022-05-10 12:06:48 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 12:05:43 +02:00
|
|
|
|
|
|
|
#include "server.h"
|
|
|
|
|
2023-09-14 17:28:27 +02:00
|
|
|
#include <QApplication>
|
|
|
|
|
2011-04-27 12:05:43 +02:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
2017-09-04 10:33:26 +02:00
|
|
|
QGuiApplication::setApplicationDisplayName(Server::tr("Local Fortune Server"));
|
2011-04-27 12:05:43 +02:00
|
|
|
Server server;
|
|
|
|
server.show();
|
2011-04-27 19:16:41 +02:00
|
|
|
return app.exec();
|
2011-04-27 12:05:43 +02:00
|
|
|
}
|