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

search.pro « search - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eadec170f115ea7f672dbc0e18151090233aa0ba (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
123
124
125
126
127
128
129
130
131
132
133
134
135
# Search library.

TARGET = search
TEMPLATE = lib
CONFIG += staticlib warn_on

ROOT_DIR = ..

include($$ROOT_DIR/common.pri)

HEADERS += \
    algos.hpp \
    approximate_string_match.hpp \
    cancel_exception.hpp \
    categories_set.hpp \
    cbv.hpp \
    common.hpp \
    displayed_categories.hpp \
    downloader_search_callback.hpp \
    dummy_rank_table.hpp \
    editor_delegate.hpp \
    emitter.hpp \
    engine.hpp \
    everywhere_search_params.hpp \
    feature_offset_match.hpp \
    features_filter.hpp \
    features_layer.hpp \
    features_layer_matcher.hpp \
    features_layer_path_finder.hpp \
    geocoder.hpp \
    geocoder_context.hpp \
    geometry_cache.hpp \
    geometry_utils.hpp \
    hotels_classifier.hpp \
    house_detector.hpp \
    house_numbers_matcher.hpp \
    house_to_street_table.hpp \
    intermediate_result.hpp \
    intersection_result.hpp \
    interval_set.hpp \
    keyword_lang_matcher.hpp \
    keyword_matcher.hpp \
    latlon_match.hpp \
    lazy_centers_table.hpp \
    locality.hpp \
    locality_finder.hpp \
    locality_scorer.hpp \
    mode.hpp \
    model.hpp \
    mwm_context.hpp \
    nearby_points_sweeper.hpp \
    nested_rects_cache.hpp \
    pre_ranker.hpp \
    pre_ranking_info.hpp \
    processor.hpp \
    processor_factory.hpp \
    projection_on_street.hpp \
    query_params.hpp \
    query_saver.hpp \
    rank_table_cache.hpp \
    ranker.hpp \
    ranking_info.hpp \
    ranking_utils.hpp \
    region.hpp \
    result.hpp \
    retrieval.hpp \
    reverse_geocoder.hpp \
    search_index_values.hpp \
    search_params.hpp \
    search_trie.hpp \
    stats_cache.hpp \
    street_vicinity_loader.hpp \
    streets_matcher.hpp \
    string_intersection.hpp \
    suggest.hpp \
    token_slice.hpp \
    types_skipper.hpp \
    utils.hpp \
    viewport_search_callback.hpp \
    viewport_search_params.hpp

SOURCES += \
    approximate_string_match.cpp \
    cbv.cpp \
    displayed_categories.cpp \
    downloader_search_callback.cpp \
    dummy_rank_table.cpp \
    editor_delegate.cpp \
    engine.cpp \
    features_filter.cpp \
    features_layer.cpp \
    features_layer_matcher.cpp \
    features_layer_path_finder.cpp \
    geocoder.cpp \
    geocoder_context.cpp \
    geometry_cache.cpp \
    geometry_utils.cpp \
    hotels_classifier.cpp \
    house_detector.cpp \
    house_numbers_matcher.cpp \
    house_to_street_table.cpp \
    intermediate_result.cpp \
    intersection_result.cpp \
    keyword_lang_matcher.cpp \
    keyword_matcher.cpp \
    latlon_match.cpp \
    lazy_centers_table.cpp \
    locality.cpp \
    locality_finder.cpp \
    locality_scorer.cpp \
    mode.cpp \
    model.cpp \
    mwm_context.cpp \
    nearby_points_sweeper.cpp \
    nested_rects_cache.cpp \
    pre_ranker.cpp \
    pre_ranking_info.cpp \
    processor.cpp \
    projection_on_street.cpp \
    query_params.cpp \
    query_saver.cpp \
    rank_table_cache.cpp \
    ranker.cpp \
    ranking_info.cpp \
    ranking_utils.cpp \
    region.cpp \
    result.cpp \
    retrieval.cpp \
    reverse_geocoder.cpp \
    search_params.cpp \
    street_vicinity_loader.cpp \
    streets_matcher.cpp \
    token_slice.cpp \
    types_skipper.cpp \
    viewport_search_callback.cpp