Minor fixes.

This commit is contained in:
vng 2011-10-16 14:07:05 +03:00 committed by Alex Zolotarev
parent 99390c215a
commit b5f7470813
4 changed files with 7 additions and 14 deletions

View file

@ -45,12 +45,4 @@ namespace classificator
ReaderType(new FileReader(fPath)).ReadAsString(buffer);
classif().ReadVisibility(buffer);
}
uint32_t GetTestDefaultType()
{
vector<string> v;
v.push_back("highway");
v.push_back("motorway");
return classif().GetTypeByPath(v);
}
}

View file

@ -14,7 +14,4 @@ namespace classificator
ReaderType const & visibility,
ReaderType const & types);
void ReadVisibility(string const & fPath);
/// This function used only in unit test to get any valid type value for feature testing.
uint32_t GetTestDefaultType();
}

View file

@ -48,6 +48,8 @@ namespace feature
default:
ASSERT_EQUAL(type, country, ());
return make_pair(worldH + 1, high);
// Uncomment this to test countries drawing in all scales.
//return make_pair(low, high);
}
}
@ -91,8 +93,9 @@ namespace feature
m_bounds.first = ReadVarInt<int64_t>(src) + base;
m_bounds.second = ReadVarInt<int64_t>(src) + base;
m_scales.resize(4);
src.Read(m_scales.data(), m_scales.size());
uint32_t const count = 4;
m_scales.resize(count);
src.Read(m_scales.data(), count);
m_ver = v1;
}

View file

@ -15,6 +15,7 @@ namespace feature
class DataHeader
{
public:
/// Max possible scales. @see arrays in feature_impl.hpp
static const size_t MAX_SCALES_COUNT = 4;
private:
@ -47,7 +48,7 @@ namespace feature
inline size_t GetScalesCount() const { return m_scales.size(); }
inline int GetScale(int i) const { return static_cast<int>(m_scales[i]); }
inline int GetLastScale() const { return GetScale(static_cast<int>(GetScalesCount()) - 1); }
inline int GetLastScale() const { return m_scales.back(); }
pair<int, int> GetScaleRange() const;