awesome-widgets/sources/3rdparty/qreplytimeout/qreplytimeout.h
2015-07-22 00:44:39 +03:00

18 lines
346 B
C++

// from here http://codereview.stackexchange.com/questions/30031/qnetworkreply-network-reply-timeout-helper
// no license provided
#include <QNetworkReply>
#include <QObject>
class QReplyTimeout : public QObject
{
Q_OBJECT
public:
explicit QReplyTimeout(QNetworkReply *reply, const int timeout);
public slots:
void timeout();
};