Sistema l'errore da me commesso in fase di conversione...
[bertos.git] / gfx / charts.h
old mode 100755 (executable)
new mode 100644 (file)
index 468af79..171fc7b
@@ -1,4 +1,4 @@
-/*!
+/**
  * \file
  * <!--
  * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
 
 /*#*
  *#* $Log$
+ *#* Revision 1.5  2006/08/01 12:23:03  bernie
+ *#* Indentation fix.
+ *#*
+ *#* Revision 1.4  2006/07/19 12:56:26  bernie
+ *#* Convert to new Doxygen style.
+ *#*
+ *#* Revision 1.3  2005/11/27 23:36:18  bernie
+ *#* Use appconfig.h instead of cfg/config.h.
+ *#*
+ *#* Revision 1.2  2005/11/04 18:17:45  bernie
+ *#* Fix header guards and includes for new location of gfx module.
+ *#*
  *#* Revision 1.1  2005/11/04 18:11:35  bernie
  *#* Move graphics stuff from mware/ to gfx/.
  *#*
  *#* Import simple chart drawing code.
  *#*
  *#*/
-#ifndef MWARE_CHARTS_H
-#define MWARE_CHARTS_H
+#ifndef GFX_CHARTS_H
+#define GFX_CHARTS_H
 
-#include <mware/gfx.h> /* vcoord_t */
-#include <cfg/config.h> /* CONFIG_ stuff */
+#include <gfx/gfx.h>   /* vcoord_t */
+#include <appconfig.h> /* CONFIG_ stuff */
 
-/*!
+/**
  * \name Width/height of the small ticks drawn over the axes
  * \{
  */
@@ -51,7 +63,7 @@
 #define TICKS_WIDTH      2
 /*\}*/
 
-/*!
+/**
  * \name Chart frame dimensions
  * \{
  */
@@ -80,4 +92,4 @@ void chart_drawAxis(Bitmap *bm);
 void chart_drawCurve(Bitmap *bm, const chart_y_t *curve_y, int curve_cnt);
 void chart_drawDots(Bitmap *bm, const chart_x_t *dots_x, const chart_y_t *dots_y, int cnt);
 
-#endif /* MWARE_CHARTS_H */
+#endif /* GFX_CHARTS_H */