summaryrefslogtreecommitdiff
path: root/navit/map.c
diff options
context:
space:
mode:
authormvglasow <michael@vonglasow.com>2021-02-28 13:27:09 +0100
committerGitHub <noreply@github.com>2021-02-28 13:27:09 +0100
commit2146fcd9c9ce1560b725e481dc8b808dd425b1d2 (patch)
tree5a7b652cf17ae15208205a626d4daa58aeeb6c43 /navit/map.c
parente90aa031b50b6d3031537b30fd9c559d43c516cf (diff)
downloadnavit-2146fcd9c9ce1560b725e481dc8b808dd425b1d2.tar.gz
Refactor:core:Documentation update (#1095)
Diffstat (limited to 'navit/map.c')
-rw-r--r--navit/map.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/navit/map.c b/navit/map.c
index c8cddbcc2..e3034d429 100644
--- a/navit/map.c
+++ b/navit/map.c
@@ -52,11 +52,6 @@
#include "country.h"
#include "xmlconfig.h"
-/**
- * @brief Holds information about a map
- *
- * This structure holds information about a map.
- */
struct map {
NAVIT_OBJECT
struct map_methods meth; /**< Structure with pointers to the map plugin's functions */
@@ -64,11 +59,6 @@ struct map {
struct callback_list *attr_cbl; /**< List of callbacks that are called when attributes change */
};
-/**
- * @brief Describes a rectangular extract of a map
- *
- * This structure describes a rectangular extract of a map.
- */
struct map_rect {
struct map *m; /**< The map this extract is from */
struct map_rect_priv *priv; /**< Private data of this map rect, only known to the map plugin */
@@ -375,12 +365,6 @@ void map_rect_destroy(struct map_rect *mr) {
}
}
-/**
- * @brief Holds information about a search on a map
- *
- * This structure holds information about a search performed on a map. This can be
- * used as "handle" to retrieve items from a search.
- */
struct map_search {
struct map *m;
struct attr search_attr;