From a922a268fd6fa224ce3c9199e30362203e409438 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Wed, 31 Oct 2012 01:14:11 +0100 Subject: doxygen for graph --- include/graph.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'include') diff --git a/include/graph.h b/include/graph.h index 9b4603bd..32995064 100644 --- a/include/graph.h +++ b/include/graph.h @@ -18,6 +18,13 @@ along with this program. If not, see . */ +/** + * @file graph.h + * @brief GRAPH module header file. + * + * @addtogroup GRAPH + * @{ + */ #ifndef GRAPH_H #define GRAPH_H @@ -27,6 +34,10 @@ #if GFX_USE_GRAPH +/*===========================================================================*/ +/* Type definitions */ +/*===========================================================================*/ + typedef struct _Graph { coord_t origin_x; coord_t origin_y; @@ -52,6 +63,10 @@ typedef struct _Graph { extern "C" { #endif +/*===========================================================================*/ +/* Type definitions */ +/*===========================================================================*/ + void graphDrawSystem(Graph *g); void graphDrawDot(Graph *g, coord_t x, coord_t y, uint16_t radius, color_t color); void graphDrawDots(Graph *g, int coord[][2], uint16_t entries, uint16_t radius, uint16_t color); @@ -64,4 +79,5 @@ void graphDrawNet(Graph *g, int coord[][2], uint16_t entries, uint16_t radius, u #endif /* GFX_USE_GRAPH */ #endif +/** @} */ -- cgit v1.2.3