00001 #ifndef _WINC_MDRREGION
00002 #define _WINC_MDRREGION
00003
00004 namespace WXP {
00005 struct MdrRegion {
00006 char config[10];
00007 struct {
00008 int cover;
00009 char type[5];
00010 int intens;
00011 } prec[3];
00012 int num_prec;
00013 char trend[4];
00014 struct {
00015 int dir,rad;
00016 } loc[5];
00017 int num_loc;
00018 struct {
00019 char type;
00020 int dir,spd;
00021 } move[3];
00022 int num_move;
00023
00024 struct {
00025 int hgt;
00026 int dir,rad;
00027 } tops;
00028 char rem[20];
00029
00030 MdrRegion();
00031 int init();
00032 int print();
00033 };
00034 };
00035 #endif