mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 23:55:12 +02:00
30 lines
783 B
C++
30 lines
783 B
C++
//
|
|
// main.cpp
|
|
// assignment-client/src
|
|
//
|
|
// Created by Stephen Birarda on 8/22/13.
|
|
// Copyright 2013 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#include <LogHandler.h>
|
|
#include <SharedUtil.h>
|
|
|
|
#include "AssignmentClientApp.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
disableQtBearerPoll(); // Fixes wifi ping spikes
|
|
|
|
qInstallMessageHandler(LogHandler::verboseMessageHandler);
|
|
qInfo() << "Starting.";
|
|
|
|
AssignmentClientApp app(argc, argv);
|
|
|
|
int acReturn = app.exec();
|
|
qDebug() << "assignment-client process" << app.applicationPid() << "exiting with status code" << acReturn;
|
|
|
|
qInfo() << "Quitting.";
|
|
return acReturn;
|
|
}
|