25#include "geomaps/Waypoint.h"
26#include "weather/METAR.h"
27#include "weather/TAF.h"
92 [[nodiscard]] Weather::
METAR metar() {
return m_metar.value();}
98 [[nodiscard]] QBindable<Weather::METAR>
bindableMetar() {
return &m_metar;}
110 [[nodiscard]] QBindable<Weather::TAF>
bindableTaf() {
return &m_taf;}
140 QProperty<GeoMaps::Waypoint> m_waypoint;
143 QProperty<Weather::METAR> m_metar;
146 QProperty<Weather::TAF> m_taf;
Waypoint, such as an airfield, a navaid station or a reporting point.
Holds and updates METAR and TAF for a given waypoint.
Weather::TAF taf
Current TAF.
QBindable< Weather::TAF > bindableTaf()
Getter method for property of the same name.
Weather::METAR metar
Current METAR.
~Observer() override=default
Standard destructor.
QBindable< QString > bindableWaypoint()
Getter method for property of the same name.
GeoMaps::Waypoint waypoint() const
Getter method for property of the same name.
QBindable< Weather::METAR > bindableMetar()
Getter method for property of the same name.
Weather::TAF taf()
Getter method for property of the same name.
GeoMaps::Waypoint waypoint
Waypoint for which METAR/TAF data is retrieved.
void setWaypoint(const GeoMaps::Waypoint &wp)
Setter method for property of the same name.
Observer(QObject *parent=nullptr)
Standard constructor.
WeatherDataProvider, weather service manager.