FACT++  1.0
HeadersTngWeather.h
Go to the documentation of this file.
1 #ifndef FACT_HeadersTNGWeather
2 #define FACT_HeadersTNGWeather
3 
4 namespace TNGWeather
5 {
6  namespace State
7  {
8  enum states_t
9  {
13  };
14  }
15 
16  struct DimWeather
17  {
18  DimWeather() { memset(this, 0, sizeof(DimWeather)); }
19 
20  float fTemp10M;
21  float fTemp5M;
22  float fTemp2M;
23  float fTempGround;
24  float fDewPoint;
25  float fHumidity;
26  float fAirPressure;
27  float fWindSpeed;
29  float fDeltaM1;
30  float fDustTotal;
31  float fSeeing;
32 
33  } __attribute__((__packed__));
34 };
enum TNGWeather::State::states_t __attribute__