2015-04-02 16:07:32 +08:00
|
|
|
/* uefitool_main.cpp
|
|
|
|
|
2018-04-30 13:33:19 +08:00
|
|
|
Copyright (c) 2018, LongSoft. All rights reserved.
|
2015-04-02 16:07:32 +08:00
|
|
|
This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QString>
|
|
|
|
#include "uefitool.h"
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
2016-10-10 14:05:04 +08:00
|
|
|
a.setOrganizationName("LongSoft");
|
|
|
|
a.setOrganizationDomain("longsoft.org");
|
2015-04-02 16:07:32 +08:00
|
|
|
a.setApplicationName("UEFITool");
|
|
|
|
|
|
|
|
UEFITool w;
|
2015-09-01 03:34:42 +08:00
|
|
|
w.setProgramPath(a.arguments().at(0));
|
2015-04-02 16:07:32 +08:00
|
|
|
if (a.arguments().length() > 1)
|
|
|
|
w.openImageFile(a.arguments().at(1));
|
|
|
|
w.show();
|
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|