httpget.h

来自「c++ GUI Programming with QT4书中的源码」· C头文件 代码 · 共 30 行

H
30
字号
#ifndef HTTPGET_H#define HTTPGET_H#include <QFile>#include <QHttp>class QUrl;class HttpGet : public QObject{    Q_OBJECTpublic:    HttpGet(QObject *parent = 0);    bool getFile(const QUrl &url);signals:    void done();private slots:    void httpDone(bool error);private:    QHttp http;    QFile file;};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?