co-maps/libs/map/position_provider.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
214 B
C++
Raw Normal View History

2025-11-22 13:58:55 +01:00
#pragma once
#include "geometry/point2d.hpp"
#include <optional>
class PositionProvider
{
public:
virtual ~PositionProvider() = default;
virtual std::optional<m2::PointD> GetCurrentPosition() const = 0;
};