forked from organicmaps/organicmaps-tmp
Add some needed selectors.
This commit is contained in:
parent
5f8f293671
commit
110568a93d
5 changed files with 15 additions and 5 deletions
|
@ -147,7 +147,7 @@ namespace
|
|||
char const * key[], char const * value[], size_t count)
|
||||
{
|
||||
FilesContainerR reader(fName);
|
||||
LOG(LINFO, ("Size=", reader.GetSize()));
|
||||
LOG(LINFO, ("Size=", reader.GetFileSize()));
|
||||
|
||||
for (size_t i = 0; i < count; ++i)
|
||||
{
|
||||
|
|
|
@ -98,7 +98,8 @@ public:
|
|||
f(m_info[i].m_tag);
|
||||
}
|
||||
|
||||
inline uint64_t GetSize() const { return m_source.Size(); }
|
||||
inline uint64_t GetFileSize() const { return m_source.Size(); }
|
||||
inline string GetFileName() const { return m_source.GetName(); }
|
||||
|
||||
private:
|
||||
ReaderT m_source;
|
||||
|
|
|
@ -146,9 +146,7 @@ public:
|
|||
|
||||
virtual ModelReader * CreateSubReader(uint64_t pos, uint64_t size) const = 0;
|
||||
|
||||
bool IsEqual(string const & name) const;
|
||||
|
||||
string GetName() const { return m_name; }
|
||||
inline string GetName() const { return m_name; }
|
||||
};
|
||||
|
||||
// Reader pointer class for data files.
|
||||
|
@ -163,6 +161,8 @@ public:
|
|||
{
|
||||
return m_p->CreateSubReader(pos, size);
|
||||
}
|
||||
|
||||
inline string GetName() const { return m_p->GetName(); }
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -94,6 +94,13 @@ public:
|
|||
return m_LimitRect ;
|
||||
}
|
||||
|
||||
inline m2::PointD GetCenter() const
|
||||
{
|
||||
ASSERT_EQUAL ( GetFeatureType(), feature::GEOM_POINT, () );
|
||||
ParseCommon();
|
||||
return m_Center;
|
||||
}
|
||||
|
||||
class GetTypesFn
|
||||
{
|
||||
public:
|
||||
|
|
|
@ -22,10 +22,12 @@ public:
|
|||
IndexFactory m_factory;
|
||||
|
||||
MwmValue(string const & name);
|
||||
|
||||
inline feature::DataHeader const & GetHeader() const
|
||||
{
|
||||
return m_factory.GetHeader();
|
||||
}
|
||||
inline string GetFileName() const { return m_cont.GetFileName(); }
|
||||
};
|
||||
|
||||
class Index : public MwmSet
|
||||
|
|
Loading…
Add table
Reference in a new issue