mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-20 13:23:59 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
17 lines
327 B
C++
17 lines
327 B
C++
#pragma once
|
|
|
|
#include "geometry/latlon.hpp"
|
|
|
|
namespace topography_generator
|
|
{
|
|
template <typename ValueType>
|
|
class ValuesProvider
|
|
{
|
|
public:
|
|
virtual ~ValuesProvider() = default;
|
|
|
|
virtual ValueType GetValue(ms::LatLon const & pos) = 0;
|
|
virtual ValueType GetInvalidValue() const = 0;
|
|
};
|
|
} // namespace topography_generator
|