1
0
Fork 0
mirror of https://github.com/LongSoft/UEFITool.git synced 2025-05-30 15:05:16 -04:00

Version 0.2.0

Initial public commit
This commit is contained in:
Nikolaj Schlej 2013-10-08 09:07:03 +02:00
commit 4afe74850d
46 changed files with 13817 additions and 0 deletions

28
main.cpp Normal file
View file

@ -0,0 +1,28 @@
/* main.cpp
Copyright (c) 2013, Nikolaj Schlej. All rights reserved.
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);
UEFITool w;
if (a.arguments().length() > 1)
w.openImageFile(a.arguments().at(1));
w.show();
return a.exec();
}