WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
NidsWind.h
1#ifndef _WINC_NIDSWIND
2#define _WINC_NIDSWIND
3
4namespace WXP {
5
6 struct NidsWind {
7 float val;
8 float x;
9 float y;
10 float dir;
11 float spd;
13 int print();
14 };
15}
16#endif
17
18
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4
This struct stores NIDS wind data block header information.
Definition: NidsWind.h:6
int print()
Definition: NidsWind.cc:17
float y
Definition: NidsWind.h:9
float spd
Definition: NidsWind.h:11
float dir
Definition: NidsWind.h:10
float x
Definition: NidsWind.h:8
float val
Definition: NidsWind.h:7