You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
668 B
31 lines
668 B
/*
|
|
* Copyright 2017 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include <QtWidgets>
|
|
|
|
#include "tools/mdbviz/mainwindow.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
QCoreApplication::setOrganizationName("Google");
|
|
QCoreApplication::setApplicationName("MDB Viz");
|
|
QCoreApplication::setApplicationVersion("0.0");
|
|
|
|
QCommandLineParser parser;
|
|
parser.setApplicationDescription(QCoreApplication::applicationName());
|
|
parser.addVersionOption();
|
|
parser.process(app);
|
|
|
|
MainWindow mainWin;
|
|
mainWin.show();
|
|
|
|
return app.exec();
|
|
}
|
|
|
|
|