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