lukas
4344e7c118
new config page with ability to edit config file new features in config class - setting member variables new button locations in gui
14 lines
265 B
C++
14 lines
265 B
C++
#include <QApplication>
|
|
#include "gui/MainWindow.h"
|
|
|
|
/**
|
|
* application entry point
|
|
*/
|
|
int main(int argc, char *argv[]) {
|
|
QApplication a(argc, argv);
|
|
MainWindow w;
|
|
w.setWindowTitle("Dynu IP Refresher");
|
|
w.show();
|
|
|
|
return QApplication::exec();
|
|
} |