summaryrefslogtreecommitdiffstats
path: root/examples/network/multistreamclient/main.cpp
blob: 5c6ea1b4416a21cf3759c49c710c7d9176902d07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2016 Alex Trotsenko <alex1973tr@gmail.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include <QApplication>
#include "client.h"

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

    return (client.exec() == QDialog::Accepted) ? 0 : -1;
}