mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-15 08:36:47 +02:00
29 lines
581 B
C++
29 lines
581 B
C++
//
|
|
// main.cpp
|
|
// tools/atp-client/src
|
|
//
|
|
// Created by Seth Alves on 2017-3-15
|
|
// Copyright 2017 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 <iostream>
|
|
#include <iomanip>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <BuildInfo.h>
|
|
|
|
#include "ATPClientApp.h"
|
|
|
|
using namespace std;
|
|
|
|
int main(int argc, char * argv[]) {
|
|
setupHifiApplication("ATP Client");
|
|
|
|
Setting::init();
|
|
|
|
ATPClientApp app(argc, argv);
|
|
return app.exec();
|
|
}
|