Textractor_test/GUI/main.cpp

14 lines
221 B
C++
Raw Normal View History

2018-07-22 06:40:16 +08:00
#include "mainwindow.h"
#include "../texthook/host.h"
2018-07-22 06:40:16 +08:00
#include <QApplication>
int main(int argc, char *argv[])
{
2018-07-26 01:46:59 +08:00
if (!Host::Start()) return 1;
QApplication a(argc, argv);
MainWindow w;
w.show();
2018-07-22 06:40:16 +08:00
2018-07-26 01:46:59 +08:00
return a.exec();
2018-07-22 06:40:16 +08:00
}