00001 #ifndef CPR_LOW_SPEED_H 00002 #define CPR_LOW_SPEED_H 00003 00004 #include <cstdint> 00005 00006 namespace cpr { 00007 00008 class LowSpeed { 00009 public: 00010 LowSpeed(const std::int32_t limit, const std::int32_t time) : limit(limit), time(time) {} 00011 00012 std::int32_t limit; 00013 std::int32_t time; 00014 }; 00015 00016 } // namespace cpr 00017 00018 #endif