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

indexer.pro « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca48a0794bed03213c44ad234dfed43ac3d0851e (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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# Indexer library.

TARGET = indexer
TEMPLATE = lib
CONFIG += staticlib warn_on
INCLUDEPATH += ../3party/protobuf/protobuf/src

ROOT_DIR = ..

include($$ROOT_DIR/common.pri)

SOURCES += \
    altitude_loader.cpp \
    categories_holder.cpp \
    categories_holder_loader.cpp \
    categories_index.cpp \
    centers_table.cpp \
    classificator.cpp \
    classificator_loader.cpp \
    coding_params.cpp \
    cuisines.cpp \
    data_factory.cpp \
    data_header.cpp \
    drawing_rule_def.cpp \
    drawing_rules.cpp \
    drules_selector.cpp \
    drules_selector_parser.cpp \
    editable_map_object.cpp \
    edits_migration.cpp \
    fake_feature_ids.cpp \
    feature.cpp \
    feature_algo.cpp \
    feature_covering.cpp \
    feature_data.cpp \
    feature_decl.cpp \
    feature_impl.cpp \
    feature_loader.cpp \
    feature_loader_base.cpp \
    feature_meta.cpp \
    feature_utils.cpp \
    feature_visibility.cpp \
    features_offsets_table.cpp \
    features_vector.cpp \
    ftypes_matcher.cpp \
    ftypes_sponsored.cpp \
    geometry_coding.cpp \
    geometry_serialization.cpp \
    index.cpp \
    index_builder.cpp \
    index_helpers.cpp \
    map_object.cpp \
    map_style.cpp \
    map_style_reader.cpp \
    mwm_set.cpp \
    new_feature_categories.cpp \  # it's in indexer because of CategoriesHolder dependency.
    old/feature_loader_101.cpp \
    osm_editor.cpp \
    postcodes_matcher.cpp \  # it's in indexer due to editor wich is in indexer and depends on postcodes_marcher
    rank_table.cpp \
    road_shields_parser.cpp \
    scales.cpp \
    search_delimiters.cpp \    # it's in indexer because of CategoriesHolder dependency.
    search_string_utils.cpp \  # it's in indexer because of CategoriesHolder dependency.
    string_slice.cpp \
    types_mapping.cpp \

HEADERS += \
    altitude_loader.hpp \
    categories_holder.hpp \
    categories_index.hpp \
    cell_coverer.hpp \
    cell_id.hpp \
    centers_table.hpp \
    cities_boundaries_serdes.hpp \
    city_boundary.hpp \
    classificator.hpp \
    classificator_loader.hpp \
    coding_params.hpp \
    cuisines.hpp \
    data_factory.hpp \
    data_header.hpp \
    drawing_rule_def.hpp \
    drawing_rules.hpp \
    drules_include.hpp \
    drules_selector.hpp \
    drules_selector_parser.hpp \
    editable_map_object.hpp \
    edits_migration.hpp \
    fake_feature_ids.hpp \
    feature.hpp \
    feature_algo.hpp \
    feature_altitude.hpp \
    feature_covering.hpp \
    feature_data.hpp \
    feature_decl.hpp \
    feature_impl.hpp \
    feature_loader.hpp \
    feature_loader_base.hpp \
    feature_meta.hpp \
    feature_processor.hpp \
    feature_utils.hpp \
    feature_visibility.hpp \
    features_offsets_table.hpp \
    features_vector.hpp \
    ftraits.hpp \
    ftypes_mapping.hpp \
    ftypes_matcher.hpp \
    ftypes_sponsored.hpp \
    geometry_coding.hpp \
    geometry_serialization.hpp \
    index.hpp \
    index_builder.hpp \
    index_helpers.hpp \
    interval_index.hpp \
    interval_index_builder.hpp \
    interval_index_iface.hpp \
    map_object.hpp \
    map_style.hpp \
    map_style_reader.hpp \
    mwm_set.hpp \
    new_feature_categories.hpp \  # it's in indexer because of CategoriesHolder dependency.
    old/feature_loader_101.hpp \
    old/interval_index_101.hpp \
    osm_editor.hpp \
    postcodes_matcher.hpp \   # it's in indexer due to editor wich is in indexer and depends on postcodes_marcher
    rank_table.hpp \
    road_shields_parser.hpp \
    scale_index.hpp \
    scale_index_builder.hpp \
    scales.hpp \
    search_delimiters.hpp \      # it's in indexer because of CategoriesHolder dependency.
    search_string_utils.hpp \    # it's in indexer because of CategoriesHolder dependency.
    string_set.hpp \
    string_slice.hpp \
    succinct_trie_builder.hpp \
    succinct_trie_reader.hpp \
    scales_patch.hpp \
    tesselator_decl.hpp \
    tree_structure.hpp \
    trie.hpp \
    trie_builder.hpp \
    trie_reader.hpp \
    types_mapping.hpp \
    unique_index.hpp \

OTHER_FILES += drules_struct.proto

SOURCES += drules_struct.pb.cc
HEADERS += drules_struct.pb.h