Created basic GUI Applecation

This commit is contained in:
Zastian Pretorius
2020-10-11 15:02:11 +02:00
parent 3244181006
commit 2628b4dc6d
8 changed files with 944 additions and 0 deletions

12
main.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
a.setWindowIcon(QIcon("./HotspotShield.png"));
MainWindow w;
w.show();
return a.exec();
}