summaryrefslogtreecommitdiff
path: root/navit/map.c
diff options
context:
space:
mode:
authortinloaf <tinloaf@ffa7fe5e-494d-0410-b361-a75ebd5db220>2008-10-10 19:30:04 +0000
committertinloaf <tinloaf@ffa7fe5e-494d-0410-b361-a75ebd5db220>2008-10-10 19:30:04 +0000
commit7457330f509e8e770c3477db9705bcff567bcdf7 (patch)
tree7cfd766e9c56f011e55aee74cd82c59dbfc0f9a5 /navit/map.c
parent53e8a86b4f6275caae683d9f0ad53f158a546ca3 (diff)
downloadnavit-7457330f509e8e770c3477db9705bcff567bcdf7.tar.gz
Fixing doxygen syntax
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@1448 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit/map.c')
-rw-r--r--navit/map.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/navit/map.c b/navit/map.c
index 713ad20b6..f8253e97e 100644
--- a/navit/map.c
+++ b/navit/map.c
@@ -17,8 +17,9 @@
* Boston, MA 02110-1301, USA.
*/
-/**
- * @file map.c
+/** @file
+ *
+ * @brief Contains code that makes navit able to load maps
*
* This file contains the code that makes navit able to load maps. Because
* navit is able to open maps in different formats, this code does not handle
@@ -56,10 +57,10 @@
* This structure holds information about a map.
*/
struct map {
- struct map_methods meth; /** Structure with pointers to the map plugin's functions */
- struct map_priv *priv; /** Private data of the map, only known to the map plugin */
- struct attr **attrs; /** Attributes of this map */
- struct callback_list *attr_cbl; /** List of callbacks that are called when attributes change */
+ struct map_methods meth; /**< Structure with pointers to the map plugin's functions */
+ struct map_priv *priv; /**< Private data of the map, only known to the map plugin */
+ struct attr **attrs; /**< Attributes of this map */
+ struct callback_list *attr_cbl; /**< List of callbacks that are called when attributes change */
};
/**
@@ -68,8 +69,8 @@ struct 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 */
+ 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 */
};
/**