]> Pileus Git - aweather/blobdiff - src/plugins/radar-misc.h
packaging fixes
[aweather] / src / plugins / radar-misc.h
diff --git a/src/plugins/radar-misc.h b/src/plugins/radar-misc.h
deleted file mode 100644 (file)
index 7e260e8..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#define RSL_FOREACH_VOL(radar, volume, count, index) \
-       guint count = 0; \
-       for (guint index = 0; index < radar->h.nvolumes; index++) { \
-               Volume *volume = radar->v[index]; \
-               if (volume == NULL) continue; \
-               count++;
-
-#define RSL_FOREACH_SWEEP(volume, sweep, count, index) \
-       guint count = 0; \
-       for (guint index = 0; index < volume->h.nsweeps; index++) { \
-               Sweep *sweep = volume->sweep[index]; \
-               if (sweep == NULL || sweep->h.elev == 0) continue; \
-               count++;
-
-#define RSL_FOREACH_RAY(sweep, ray, count, index) \
-       guint count = 0; \
-       for (guint index = 0; index < sweep->h.nrays; index++) { \
-               Ray *ray = sweep->ray[index]; \
-               if (ray == NULL) continue; \
-               count++;
-
-#define RSL_FOREACH_BIN(ray, bin, count, index) \
-       guint count = 0; \
-       for (guint index = 0; index < ray->h.nbins; index++) { \
-               Range bin = ray->range[index]; \
-               count++;
-
-#define RSL_FOREACH_END }