예제 #1
0
 /// <summary>
 /// initForecastObjects init and allocate all forecast objects
 /// </summary>
 private void initForecastObjects()
 {
     this.location      = new Location();
     this.sunRise       = new SunRise();
     this.temperature   = new Temperature();
     this.humidity      = new Humidity();
     this.pressure      = new Pressure();
     this.windSpeed     = new WindSpeed();
     this.windDirection = new WindDirection();
     this.clouds        = new Clouds();
     this.precipitation = new Precipitation();
     this.weather       = new Weather();
     this.lastupdate    = new Lastupdate();
 }
 /// <summary>
 /// initForecastObjects init and allocate all forecast objects
 /// </summary>
 private void initForecastObjects()
 {
     this.location = new Location();
     this.sunRise = new SunRise();
     this.temperature = new Temperature();
     this.humidity = new Humidity();
     this.pressure = new Pressure();
     this.windSpeed = new WindSpeed();
     this.windDirection = new WindDirection();
     this.clouds = new Clouds();
     this.precipitation = new Precipitation();
     this.weather = new Weather();
     this.lastupdate = new Lastupdate();
 }