WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
SatPoint.h
1#ifndef _WINC_SATPOINT
2#define _WINC_SATPOINT
3
4namespace WXP {
5
6 struct SatPoint {
7 float line;
8 float elem;
9
10 SatPoint();
11 int init();
12 int set( float l, float e );
13 int print();
14 };
15}
16#endif
17
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4
This struct stores where the satellite is pointing.
Definition: SatPoint.h:6