00001 #ifndef _WINC_GRIDSOUND
00002 #define _WINC_GRIDSOUND
00003
00004 #include <WXP/EarthPoint.h>
00005 #include <WXP/Filename.h>
00006 #include <WXP/UpaData.h>
00007
00008 namespace WXP {
00009 class GridSound {
00010 float dp;
00011 char pname[10];
00012
00013 public:
00014 GridSound();
00015 GridSound( const char *str );
00016 int init();
00017 int setParam( const char *str );
00018 int get( Filename &filename, int hour, EarthPoint &ept, UpaData &data );
00019 int print();
00020
00021 };
00022 }
00023 #endif