Textractor_test/GUI/main.cpp
2018-08-21 22:43:30 -04:00

13 lines
186 B
C++

#include "mainwindow.h"
#include "../host/host.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}