main.cpp 365 B

12345678910111213
  1. #include <QtCore>
  2. #include "qtdownload.h"
  3. int main(int argc, char **argv) {
  4. QCoreApplication app(argc, argv);
  5. QtDownload dl;
  6. dl.setTarget("http://[324:9de3:fea4:f6ac::ace]/files/text/inception/readme.txt");
  7. dl.download();
  8. //quit when the download is done.
  9. QObject::connect(&dl, SIGNAL(done()), &app, SLOT(quit()));
  10. return app.exec();
  11. }