Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Pimenov <m@maps.me>2019-02-13 20:42:00 +0300
committerTatiana Yan <tatiana.kondakova@gmail.com>2019-02-15 14:06:19 +0300
commit229d8a3bcf09e37e2dcff951dc36989720eef274 (patch)
tree136b402e2ad15bcde9deb978de40ab9fc998c6c9 /search/editor_delegate.hpp
parent1f2aeeb9edcf3769f569ff1472fd2d418acb0502 (diff)
[search] Got rid of most old style std/ includes.
Diffstat (limited to 'search/editor_delegate.hpp')
-rw-r--r--search/editor_delegate.hpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/search/editor_delegate.hpp b/search/editor_delegate.hpp
index 76ba3562b5..8a653a7e12 100644
--- a/search/editor_delegate.hpp
+++ b/search/editor_delegate.hpp
@@ -2,6 +2,9 @@
#include "editor/osm_editor.hpp"
+#include <memory>
+#include <string>
+
class DataSource;
namespace search
@@ -12,9 +15,9 @@ public:
EditorDelegate(DataSource const & dataSource);
// osm::Editor::Delegate overrides:
- MwmSet::MwmId GetMwmIdByMapName(string const & name) const override;
- unique_ptr<FeatureType> GetOriginalFeature(FeatureID const & fid) const override;
- string GetOriginalFeatureStreet(FeatureType & ft) const override;
+ MwmSet::MwmId GetMwmIdByMapName(std::string const & name) const override;
+ std::unique_ptr<FeatureType> GetOriginalFeature(FeatureID const & fid) const override;
+ std::string GetOriginalFeatureStreet(FeatureType & ft) const override;
void ForEachFeatureAtPoint(osm::Editor::FeatureTypeFn && fn,
m2::PointD const & point) const override;