mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
20 lines
290 B
C++
20 lines
290 B
C++
#ifndef QQTWEBPROTOCOL_H
|
|
#define QQTWEBPROTOCOL_H
|
|
|
|
#include <QObject>
|
|
#include <QNetworkRequest>
|
|
#include <QNetworkReply>
|
|
|
|
class QQtWebProtocol : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit QQtWebProtocol(QObject *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // QQTWEBPROTOCOL_H
|