00001 #ifndef _WINC_SATANGLE
00002 #define _WINC_SATANGLE
00003
00004 namespace WXP {
00005 struct SatAngle {
00006 float elev;
00007 float scan;
00008
00009 SatAngle();
00010 int init();
00011 int set( float e, float s );
00012 int print();
00013 };
00014 }
00015 #endif
00016