2018-07-21 15:40:16 -07:00
|
|
|
#include "mainwindow.h"
|
2018-07-24 19:00:10 -07:00
|
|
|
#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
|
|
|
}
|