1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-17 23:57:14 +02:00

Remove CURL/CPR.

This commit is contained in:
Sandu Liviu Catalin
2021-02-02 19:10:51 +02:00
parent fc9419677f
commit 0d05273f3f
60 changed files with 1 additions and 6144 deletions

View File

@ -1,19 +0,0 @@
#ifndef CPR_SPEED_LIMIT_H
#define CPR_SPEED_LIMIT_H
#include <cstdint>
namespace cpr {
class LimitRate {
public:
LimitRate(const std::int64_t downrate, const std::int64_t uprate)
: downrate(downrate), uprate(uprate) {}
std::int64_t downrate = 0;
std::int64_t uprate = 0;
};
} // namespace cpr
#endif