00001 #ifndef _WINC_SATPOINT
00002 #define _WINC_SATPOINT
00003
00004 namespace WXP {
00005
00006 struct SatPoint {
00007 float line;
00008 float elem;
00009
00010 SatPoint();
00011 int init();
00012 int set( float l, float e );
00013 int print();
00014 };
00015 }
00016 #endif
00017