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

23 lines
428 B
C++

#include "mainwindow.h"
#include <QApplication>
#include "qqtobjectfactory.h"
#include "qqtcore.h"
#include "qqthttpdownloadmanager.h"
#include "qqtapplication.h"
#include "qqtqtiowebpageparser.h"
#include "qqtdictionary.h"
int main ( int argc, char* argv[] )
{
QQtApplication a ( argc, argv );
QQtQtIOWebPageParser webparser;
webparser.startNewParse ( );
MainWindow w;
w.show();
return a.exec();
}