forked from organicmaps/organicmaps
Add dummy function for dump FeatureBuilder1
This commit is contained in:
parent
085e926826
commit
213c93b49a
3 changed files with 9 additions and 1 deletions
|
@ -19,6 +19,9 @@ class FeatureBuilder1
|
|||
friend string DebugPrint(FeatureBuilder1 const & f);
|
||||
|
||||
public:
|
||||
typedef vector<m2::PointD> TRing;
|
||||
typedef list<TRing> TPolygon;
|
||||
|
||||
FeatureBuilder1();
|
||||
|
||||
/// @name Geometry manipulating functions.
|
||||
|
|
|
@ -115,6 +115,11 @@ uint32_t FeaturesCollector::WriteFeatureBase(vector<char> const & bytes, Feature
|
|||
return static_cast<uint32_t>(offset);
|
||||
}
|
||||
|
||||
void FeaturesCollector::DumpFeatureGeometry(FeatureBuilder1 const & fb)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void FeaturesCollector::operator() (FeatureBuilder1 const & fb)
|
||||
{
|
||||
FeatureBuilder1::buffer_t bytes;
|
||||
|
|
|
@ -35,7 +35,7 @@ namespace feature
|
|||
|
||||
/// @return feature offset in the file, which is used as an ID later
|
||||
uint32_t WriteFeatureBase(vector<char> const & bytes, FeatureBuilder1 const & fb);
|
||||
|
||||
void DumpFeatureGeometry(FeatureBuilder1 const & fb);
|
||||
void Flush();
|
||||
|
||||
public:
|
||||
|
|
Loading…
Add table
Reference in a new issue