Files
comaps/tools/topography_generator/utils/values_provider.hpp
Alexander Borsuk 76ffc99abd New cpp folder structure
Signed-off-by: Alexander Borsuk <me@alex.bio>
2025-08-14 20:52:04 +07:00

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