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

Reinstate CPR using system library.

This commit is contained in:
Sandu Liviu Catalin
2021-03-27 00:18:51 +02:00
parent 91bb79403c
commit bee47a44c4
56 changed files with 5861 additions and 2 deletions

19
vendor/CPR/include/cpr/limit_rate.h vendored Normal file
View File

@ -0,0 +1,19 @@
#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