1 | /* |
---|---|
2 | SPDX-FileCopyrightText: 2021 Volker Krause <vkrause@kde.org> |
3 | |
4 | SPDX-License-Identifier: LGPL-2.0-or-later |
5 | */ |
6 | |
7 | #ifndef SPATIALINDEX_H |
8 | #define SPATIALINDEX_H |
9 | |
10 | #include "spatial_index_property_p.h" |
11 | |
12 | /** Spatial index lookup functions . */ |
13 | namespace SpatialIndex |
14 | { |
15 | SpatialIndexProperty lookup(float lat, float lon); |
16 | } |
17 | |
18 | #endif // SPATIALINDEX_H |
19 |