Files
comaps/libs/routing/speed_camera_prohibition.hpp
Konstantin Pastbin bfffa1fff4 Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-08-17 14:32:37 +07:00

15 lines
480 B
C++

#pragma once
#include "platform/country_file.hpp"
namespace routing
{
std::string const kDebugSpeedCamSetting = "DebugSpeedCam";
/// \returns true if any information about speed cameras is prohibited in |mwm|.
bool AreSpeedCamerasProhibited(platform::CountryFile const & mwm);
/// \returns true if any information about speed cameras is prohibited or partly prohibited in |mwm|.
bool AreSpeedCamerasPartlyProhibited(platform::CountryFile const & mwm);
} // namespace routing