2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 Alex Trotsenko <alex1973tr@gmail.com>
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2014-09-24 14:31:33 +00:00
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
#include "client.h"
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
Client client;
|
|
|
|
|
|
|
|
return (client.exec() == QDialog::Accepted) ? 0 : -1;
|
|
|
|
}
|