mirror of
https://github.com/infiniteCable2/openpilot.git
synced 2026-09-10 02:03:42 +08:00
ee9280d9d3
old-commit-hash: ad57cd37595919c84c7c8315222a1141d10993fa
11 lines
230 B
C++
11 lines
230 B
C++
#include "api.hpp"
|
|
#include "ui.hpp"
|
|
|
|
class RequestRepeater : public HttpRequest {
|
|
public:
|
|
RequestRepeater(QObject *parent, const QString &requestURL, const QString &cacheKey = "", int period = 0);
|
|
|
|
private:
|
|
QTimer *timer;
|
|
};
|