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

routing.pro « routing - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 36e75a7aa08c9b64bbb03cbe6a83c3799abcaaa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# Base functions project.
TARGET = routing
TEMPLATE = lib
CONFIG += staticlib warn_on c++11

ROOT_DIR = ..

include($$ROOT_DIR/common.pri)

DEFINES *= BOOST_ERROR_CODE_HEADER_ONLY
INCLUDEPATH += $$ROOT_DIR/3party/jansson/src \
               $$ROOT_DIR/3party/osrm/osrm-backend/include \
               $$ROOT_DIR/3party/osrm/osrm-backend/third_party

SOURCES += \
    async_router.cpp \
    base/followed_polyline.cpp \
    bicycle_directions.cpp \
    bicycle_model.cpp \
    car_model.cpp \
    car_router.cpp \
    cross_mwm_road_graph.cpp \
    cross_mwm_router.cpp \
    cross_routing_context.cpp \
    directions_engine.cpp \
    edge_estimator.cpp \
    features_road_graph.cpp \
    geometry.cpp \
    index_graph.cpp \
    index_graph_serialization.cpp \
    index_graph_starter.cpp \
    joint.cpp \
    joint_index.cpp \
    nearest_edge_finder.cpp \
    online_absent_fetcher.cpp \
    online_cross_fetcher.cpp \
    osrm2feature_map.cpp \
    osrm_engine.cpp \
    osrm_helpers.cpp \
    osrm_path_segment_factory.cpp \
    pedestrian_directions.cpp \
    pedestrian_model.cpp \
    restriction_loader.cpp \
    road_graph.cpp \
    road_graph_router.cpp \
    road_index.cpp \
    route.cpp \
    router.cpp \
    router_delegate.cpp \
    routing_algorithm.cpp \
    routing_helpers.cpp \
    routing_mapping.cpp \
    routing_serialization.cpp \
    routing_session.cpp \
    single_mwm_router.cpp \
    speed_camera.cpp \
    turns.cpp \
    turns_generator.cpp \
    turns_notification_manager.cpp \
    turns_sound_settings.cpp \
    turns_tts_text.cpp \
    vehicle_model.cpp \


HEADERS += \
    async_router.hpp \
    base/astar_algorithm.hpp \
    base/followed_polyline.hpp \
    bicycle_directions.hpp \
    bicycle_model.hpp \
    car_model.hpp \
    car_router.hpp \
    cross_mwm_road_graph.hpp \
    cross_mwm_router.hpp \
    cross_routing_context.hpp \
    directions_engine.hpp \
    edge_estimator.hpp \
    features_road_graph.hpp \
    geometry.hpp \
    index_graph.hpp \
    index_graph_serialization.hpp \
    index_graph_starter.hpp \
    joint.hpp \
    joint_index.hpp \
    loaded_path_segment.hpp \
    nearest_edge_finder.hpp \
    online_absent_fetcher.hpp \
    online_cross_fetcher.hpp \
    osrm2feature_map.hpp \
    osrm_data_facade.hpp \
    osrm_engine.hpp \
    osrm_helpers.hpp \
    osrm_path_segment_factory.hpp \
    pedestrian_directions.hpp \
    pedestrian_model.hpp \
    restriction_loader.hpp \
    road_graph.hpp \
    road_graph_router.hpp \
    road_index.hpp \
    road_point.hpp \
    route.hpp \
    route_point.hpp \
    router.hpp \
    router_delegate.hpp \
    routing_algorithm.hpp \
    routing_exceptions.hpp \
    routing_helpers.hpp \
    routing_mapping.hpp \
    routing_result_graph.hpp \
    routing_serialization.hpp \
    routing_session.hpp \
    routing_settings.hpp \
    single_mwm_router.hpp \
    speed_camera.hpp \
    turn_candidate.hpp \
    turns.hpp \
    turns_generator.hpp \
    turns_notification_manager.hpp \
    turns_sound_settings.hpp \
    turns_tts_text.hpp \
    vehicle_mask.hpp \
    vehicle_model.hpp \