Textractor_test/GUI/main.cpp
2018-07-24 19:00:10 -07:00

14 lines
236 B
C++

#include "mainwindow.h"
#include "../texthook/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();
}