Textractor/GUI/main.cpp

14 lines
221 B
C++
Raw Normal View History

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