mirror of
https://github.com/overte-org/overte.git
synced 2025-05-09 04:38:49 +02:00
47 lines
1.3 KiB
C++
47 lines
1.3 KiB
C++
//
|
|
// main.cpp
|
|
// interface/src
|
|
//
|
|
// 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 "Application.h"
|
|
|
|
#include <QDebug>
|
|
#include <QDir>
|
|
#include <QTranslator>
|
|
#include <SharedUtil.h>
|
|
|
|
int main(int argc, const char * argv[]) {
|
|
QElapsedTimer startupTime;
|
|
startupTime.start();
|
|
|
|
// Debug option to demonstrate that the client's local time does not
|
|
// need to be in sync with any other network node. This forces clock
|
|
// skew for the individual client
|
|
const char* CLOCK_SKEW = "--clockSkew";
|
|
const char* clockSkewOption = getCmdOption(argc, argv, CLOCK_SKEW);
|
|
if (clockSkewOption) {
|
|
int clockSkew = atoi(clockSkewOption);
|
|
usecTimestampNowForceClockSkew(clockSkew);
|
|
qDebug("clockSkewOption=%s clockSkew=%d", clockSkewOption, clockSkew);
|
|
}
|
|
|
|
int exitCode;
|
|
{
|
|
QSettings::setDefaultFormat(QSettings::IniFormat);
|
|
Application app(argc, const_cast<char**>(argv), startupTime);
|
|
|
|
QTranslator translator;
|
|
translator.load("interface_en");
|
|
app.installTranslator(&translator);
|
|
|
|
qDebug( "Created QT Application.");
|
|
exitCode = app.exec();
|
|
}
|
|
qDebug("Normal exit.");
|
|
return exitCode;
|
|
}
|