1 | #ifndef CPR_LOW_SPEED_H |
---|---|
2 | #define CPR_LOW_SPEED_H |
3 | |
4 | #include <cstdint> |
5 | |
6 | namespace cpr { |
7 | |
8 | class LowSpeed { |
9 | public: |
10 | LowSpeed(const std::int32_t p_limit, const std::int32_t p_time) : limit(p_limit), time(p_time) {} |
11 | |
12 | std::int32_t limit; |
13 | std::int32_t time; |
14 | }; |
15 | |
16 | } // namespace cpr |
17 | |
18 | #endif |
19 |