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

#include <QApplication>

#include "server.h"

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

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