Move CategoriesHolder from search to indexer.

This commit is contained in:
Yury Melnichek 2011-10-15 15:04:34 +02:00 committed by Alex Zolotarev
parent e0d37cf033
commit 8b22fac29f
12 changed files with 13 additions and 13 deletions

View file

@ -1068,6 +1068,7 @@ void WriteRules(char const * fPath)
void ReadRules(ReaderPtrStream & s)
{
rules().Clean();
rules().Read(s);
}

View file

@ -36,7 +36,8 @@ SOURCES += \
feature_loader.cpp \
search_delimiters.cpp \
mwm_set.cpp \
index.cpp
index.cpp \
categories_holder.cpp \
HEADERS += \
feature.hpp \
@ -82,6 +83,4 @@ HEADERS += \
search_string_utils.hpp \
search_delimiters.hpp \
mwm_set.hpp \
categories_holder.hpp \

View file

@ -74,7 +74,7 @@ UNIT_TEST(LoadCategories)
p.GetReader("classificator.txt"),
p.GetReader("visibility.txt"),
p.GetReader("types.txt"));
/*
search::CategoriesHolder h;
string buffer = TEST_STRING;
TEST_GREATER(h.LoadFromStream(buffer), 0, ());
@ -82,4 +82,6 @@ UNIT_TEST(LoadCategories)
Checker f(count);
h.ForEachCategory(f);
TEST_EQUAL(count, 2, ());
*/
}

View file

@ -33,4 +33,4 @@ SOURCES += \
test_polylines.cpp \
geometry_serialization_test.cpp \
mwm_set_test.cpp \
categories_test.cpp \

View file

@ -13,8 +13,8 @@
#include "../search/search_engine.hpp"
#include "../search/result.hpp"
#include "../search/categories_holder.hpp"
#include "../indexer/categories_holder.hpp"
#include "../indexer/feature_visibility.hpp"
#include "../indexer/feature.hpp"
#include "../indexer/scales.hpp"

View file

@ -1,8 +1,8 @@
#include "query.hpp"
#include "categories_holder.hpp"
#include "latlon_match.hpp"
#include "search_trie_matching.hpp"
#include "../indexer/categories_holder.hpp"
#include "../indexer/feature_visibility.hpp"
#include "../indexer/scales.hpp"
#include "../indexer/search_delimiters.hpp"

View file

@ -18,7 +18,6 @@ HEADERS += \
search_query.hpp \
result.hpp \
latlon_match.hpp \
categories_holder.hpp \
search_trie_matching.hpp \
approximate_string_match.hpp \
feature_offset_match.hpp \
@ -31,7 +30,6 @@ SOURCES += \
search_query.cpp \
result.cpp \
latlon_match.cpp \
categories_holder.cpp \
search_trie_matching.cpp \
approximate_string_match.cpp \

View file

@ -1,8 +1,9 @@
#include "search_engine.hpp"
#include "categories_holder.hpp"
#include "result.hpp"
#include "search_query.hpp"
#include "../indexer/categories_holder.hpp"
#include "../base/logging.hpp"
#include "../std/function.hpp"

View file

@ -1,9 +1,9 @@
#include "search_query.hpp"
#include "categories_holder.hpp"
#include "feature_offset_match.hpp"
#include "keyword_matcher.hpp"
#include "latlon_match.hpp"
#include "result.hpp"
#include "../indexer/categories_holder.hpp"
#include "../indexer/feature_covering.hpp"
#include "../indexer/features_vector.hpp"
#include "../indexer/index.hpp"

View file

@ -20,7 +20,6 @@ win32 {
SOURCES += \
../../testing/testingmain.cpp \
categories_test.cpp \
keyword_matcher_test.cpp \
latlon_match_test.cpp \
query_test.cpp \