Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
28
libs/search/editor_delegate.hpp
Normal file
28
libs/search/editor_delegate.hpp
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#pragma once
|
||||
|
||||
#include "editor/osm_editor.hpp"
|
||||
|
||||
#include "indexer/editable_map_object.hpp"
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
class DataSource;
|
||||
|
||||
namespace search
|
||||
{
|
||||
class EditorDelegate : public osm::Editor::Delegate
|
||||
{
|
||||
public:
|
||||
EditorDelegate(DataSource const & dataSource);
|
||||
|
||||
// osm::Editor::Delegate overrides:
|
||||
MwmSet::MwmId GetMwmIdByMapName(std::string const & name) const override;
|
||||
std::unique_ptr<osm::EditableMapObject> GetOriginalMapObject(FeatureID const & fid) const override;
|
||||
std::string GetOriginalFeatureStreet(FeatureID const & fid) const override;
|
||||
void ForEachFeatureAtPoint(osm::Editor::FeatureTypeFn && fn, m2::PointD const & point) const override;
|
||||
|
||||
private:
|
||||
DataSource const & m_dataSource;
|
||||
};
|
||||
} // namespace search
|
||||
Loading…
Add table
Add a link
Reference in a new issue