?? httpget.h
字號(hào):
#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
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -