WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
HurFore.h
1#ifndef _WINC_HURFORE
2#define _WINC_HURFORE
3
4#include <WXP/HurData.h>
5
6namespace WXP {
7 struct HurFore {
8 char wmo[20];
9 HurPos adv;
10 HurPos fore[10];
11 int nfore;
12
13 HurFore();
14 int init();
15 inline const char *getName(){ return adv.name; };
16 inline int getLoc(){ return adv.locate; };
17 inline const char *getLocString(){ return HurPos::getLoc(adv.locate); };
18 inline int getYear(){ return adv.date.getYear(); };
19 int print();
20 int printTable();
21 };
22}
23#endif
int getYear()
Definition: Date.h:40
This struct has data for a hurricane position.
Definition: HurPos.h:7
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4
This struct has data for a single advisory containing observation and forecast.
Definition: HurFore.h:7