Split out gfx.c into bitmap.c and line.c.
[bertos.git] / gfx / charts.h
index 468af79b0c96e6bcf99bb010737a3b35e5a6bd7c..a9ae3e2c7d3faadda1c4b2abca9f3369a1f7c9da 100755 (executable)
 
 /*#*
  *#* $Log$
+ *#* 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
@@ -80,4 +86,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 */