Welcome to mirror list, hosted at ThFree Co, Russian Federation.

speed_camera.hpp « routing - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 175f84eefb3709c89d93522c9b5feeea3d7a3543 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "geometry/point2d.hpp"

#include "std/cstdint.hpp"

class DataSourceBase;

namespace routing
{
extern uint8_t const kNoSpeedCamera;

uint8_t CheckCameraInPoint(m2::PointD const & point, DataSourceBase const & dataSource);
}  // namespace routing