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: 894529fb5b09564f1fca5f735c2083c70e2fdf93 (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
# 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 \
    cbv_ptr.hpp \
    dummy_rank_table.hpp \
    feature_offset_match.hpp \
    features_filter.hpp \
    features_layer.hpp \
    features_layer_matcher.hpp \
    features_layer_path_finder.hpp \
    geocoder.hpp \
    geometry_cache.hpp \
    geometry_utils.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 \
    locality.hpp \
    locality_finder.hpp \
    locality_scorer.hpp \
    mode.hpp \
    mwm_context.hpp \
    nested_rects_cache.hpp \
    params.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 \
    ranking_info.hpp \
    ranking_utils.hpp \
    region.hpp \
    result.hpp \
    retrieval.hpp \
    reverse_geocoder.hpp \
    search_common.hpp \
    search_engine.hpp \
    search_index_values.hpp \
    search_model.hpp \
    search_string_intersection.hpp \
    search_trie.hpp \
    stats_cache.hpp \
    street_vicinity_loader.hpp \
    suggest.hpp \
    token_slice.hpp \
    types_skipper.hpp \

SOURCES += \
    approximate_string_match.cpp \
    cbv_ptr.cpp \
    dummy_rank_table.cpp \
    features_filter.cpp \
    features_layer.cpp \
    features_layer_matcher.cpp \
    features_layer_path_finder.cpp \
    geocoder.cpp \
    geometry_cache.cpp \
    geometry_utils.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 \
    locality.cpp \
    locality_finder.cpp \
    locality_scorer.cpp \
    mode.cpp \
    mwm_context.cpp \
    nested_rects_cache.cpp \
    params.cpp \
    pre_ranker.cpp \
    pre_ranking_info.cpp \
    processor.cpp \
    projection_on_street.cpp \
    query_params.cpp \
    query_saver.cpp \
    rank_table_cache.cpp \
    ranking_info.cpp \
    ranking_utils.cpp \
    region.cpp \
    result.cpp \
    retrieval.cpp \
    reverse_geocoder.cpp \
    search_engine.cpp \
    search_model.cpp \
    street_vicinity_loader.cpp \
    token_slice.cpp \
    types_skipper.cpp \