1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00

23 lines
428 B
C++
Raw Normal View History

2017-10-12 16:28:07 +08:00
#include "mainwindow.h"
#include <QApplication>
2018-04-22 16:17:15 +08:00
#include "qqtobjectmanager.h"
2017-11-25 17:55:19 +08:00
#include "qqtcore.h"
#include "qqthttpdownloadmanager.h"
#include "qqtapplication.h"
#include "qqtqtiowebpageparser.h"
#include "qqtdictionary.h"
2017-10-12 16:28:07 +08:00
2017-11-25 17:55:19 +08:00
int main ( int argc, char* argv[] )
2017-10-12 16:28:07 +08:00
{
2017-11-25 17:55:19 +08:00
QQtApplication a ( argc, argv );
QQtQtIOWebPageParser webparser;
webparser.startNewParse ( );
2017-10-12 16:28:07 +08:00
MainWindow w;
w.show();
return a.exec();
}