19 lines
294 B
C
19 lines
294 B
C
|
#ifndef CPR_LOW_SPEED_H
|
||
|
#define CPR_LOW_SPEED_H
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace cpr {
|
||
|
|
||
|
class LowSpeed {
|
||
|
public:
|
||
|
LowSpeed(const std::int32_t p_limit, const std::int32_t p_time) : limit(p_limit), time(p_time) {}
|
||
|
|
||
|
std::int32_t limit;
|
||
|
std::int32_t time;
|
||
|
};
|
||
|
|
||
|
} // namespace cpr
|
||
|
|
||
|
#endif
|