Textractor_test/GUI/main.cpp
2018-08-03 10:41:30 -04:00

14 lines
217 B
C++

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