DynuIPRefresher/src/maingui.cpp
2020-05-09 23:08:23 +02:00

17 lines
291 B
C++

//
// Created by lukas on 09.05.20.
//
#include <QApplication>
#include <iostream>
#include "gui/MainWindow.h"
int main(int argc, char *argv[]) {
std::cout << "gui here!" << std::endl;
QApplication a(argc, argv);
MainWindow w;
w.show();
return QApplication::exec();
}