Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 13:58:55 +01:00
parent 4af19165ec
commit 68073add76
12458 changed files with 12350765 additions and 2 deletions

View 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