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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/xcode
diff options
context:
space:
mode:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2019-02-18 13:29:51 +0300
committerVlad Mihaylenko <vxmihaylenko@gmail.com>2019-02-20 13:25:42 +0300
commit61f3a3626cc1ac29107dc146842b4ac479a0f2cd (patch)
tree684c3e3d070aa50deee83931a0885797143f70e2 /xcode
parent3a6ee0bc9a45b7d6421a70fb7778272e6a8f7bf2 (diff)
Adding methods for getting info if route crosses mwm where warnings about speedcams are prohibited.
Diffstat (limited to 'xcode')
-rw-r--r--xcode/routing/routing.xcodeproj/project.pbxproj8
1 files changed, 8 insertions, 0 deletions
diff --git a/xcode/routing/routing.xcodeproj/project.pbxproj b/xcode/routing/routing.xcodeproj/project.pbxproj
index afc0f16c1b..2bb0744486 100644
--- a/xcode/routing/routing.xcodeproj/project.pbxproj
+++ b/xcode/routing/routing.xcodeproj/project.pbxproj
@@ -93,6 +93,8 @@
56099E2B1CC7C97D00A7772A /* turn_candidate.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 56099E271CC7C97D00A7772A /* turn_candidate.hpp */; };
56099E331CC9247E00A7772A /* bicycle_directions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56099E301CC9247E00A7772A /* bicycle_directions.cpp */; };
56099E341CC9247E00A7772A /* bicycle_directions.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 56099E311CC9247E00A7772A /* bicycle_directions.hpp */; };
+ 5610731B221ABF96008447B2 /* speed_camera_prohibition.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 56107319221ABF96008447B2 /* speed_camera_prohibition.hpp */; };
+ 5610731C221ABF96008447B2 /* speed_camera_prohibition.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5610731A221ABF96008447B2 /* speed_camera_prohibition.cpp */; };
56290B87206A3232003892E0 /* routing_algorithm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56290B85206A3231003892E0 /* routing_algorithm.cpp */; };
56290B88206A3232003892E0 /* routing_algorithm.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 56290B86206A3231003892E0 /* routing_algorithm.hpp */; };
562BDE2020D14860008EFF6F /* routing_callbacks.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 562BDE1F20D14860008EFF6F /* routing_callbacks.hpp */; };
@@ -387,6 +389,8 @@
56099E271CC7C97D00A7772A /* turn_candidate.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = turn_candidate.hpp; sourceTree = "<group>"; };
56099E301CC9247E00A7772A /* bicycle_directions.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bicycle_directions.cpp; sourceTree = "<group>"; };
56099E311CC9247E00A7772A /* bicycle_directions.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = bicycle_directions.hpp; sourceTree = "<group>"; };
+ 56107319221ABF96008447B2 /* speed_camera_prohibition.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = speed_camera_prohibition.hpp; sourceTree = "<group>"; };
+ 5610731A221ABF96008447B2 /* speed_camera_prohibition.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = speed_camera_prohibition.cpp; sourceTree = "<group>"; };
56290B85206A3231003892E0 /* routing_algorithm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = routing_algorithm.cpp; sourceTree = "<group>"; };
56290B86206A3231003892E0 /* routing_algorithm.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = routing_algorithm.hpp; sourceTree = "<group>"; };
562BDE1F20D14860008EFF6F /* routing_callbacks.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = routing_callbacks.hpp; sourceTree = "<group>"; };
@@ -812,6 +816,8 @@
675343FA1A3F640D00A0A8C3 /* routing */ = {
isa = PBXGroup;
children = (
+ 5610731A221ABF96008447B2 /* speed_camera_prohibition.cpp */,
+ 56107319221ABF96008447B2 /* speed_camera_prohibition.hpp */,
4408A63721F1E7F0008171B8 /* index_graph_starter_joints.cpp */,
4408A63921F1E7F0008171B8 /* index_graph_starter_joints.hpp */,
4408A63A21F1E7F0008171B8 /* joint_segment.cpp */,
@@ -1012,6 +1018,7 @@
56CA09E61E30E73B00D05C9A /* index_graph_tools.hpp in Headers */,
0C81E1581F0258AA00DC66DF /* segmented_route.hpp in Headers */,
671F58BE1B874EC80032311E /* followed_polyline.hpp in Headers */,
+ 5610731B221ABF96008447B2 /* speed_camera_prohibition.hpp in Headers */,
0C5FEC6A1DDE193F0017688C /* road_index.hpp in Headers */,
674F9BCD1B0A580E00704FFA /* features_road_graph.hpp in Headers */,
40576F781F7A788B000B593B /* fake_vertex.hpp in Headers */,
@@ -1328,6 +1335,7 @@
674F9BCC1B0A580E00704FFA /* features_road_graph.cpp in Sources */,
0C5FEC5E1DDE192A0017688C /* geometry.cpp in Sources */,
674F9BD01B0A580E00704FFA /* online_cross_fetcher.cpp in Sources */,
+ 5610731C221ABF96008447B2 /* speed_camera_prohibition.cpp in Sources */,
56290B87206A3232003892E0 /* routing_algorithm.cpp in Sources */,
670EE5751B664796001E8064 /* router.cpp in Sources */,
5670595D1F3AF97F0062672D /* checkpoint_predictor.cpp in Sources */,