GeoDesk for C++
Fast and storage-efficient spatial database engine for OpenStreetMap features
Loading...
Searching...
No Matches
forward.h
Go to the documentation of this file.
1// Copyright (c) 2024 Clarisma / GeoDesk contributors
2// SPDX-License-Identifier: LGPL-3.0-only
3
4#pragma once
5
6namespace geodesk {
7
8// \cond
9
10class FeaturePtr;
11
12template<typename T>
13class FeatureBase;
14using Feature = FeatureBase<FeaturePtr>;
15
16// \endcond
17
18} // namespace geodesk
Definition Features.h:12