You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
226 B
11 lines
226 B
4 years ago
|
#include "api.h"
|
||
|
#include "ui.h"
|
||
4 years ago
|
|
||
|
class RequestRepeater : public HttpRequest {
|
||
|
public:
|
||
4 years ago
|
RequestRepeater(QObject *parent, const QString &requestURL, const QString &cacheKey = "", int period = 0);
|
||
4 years ago
|
|
||
|
private:
|
||
|
QTimer *timer;
|
||
4 years ago
|
};
|