23#include "weather/Observer.h"
75 [[nodiscard]] QList<Weather::Observer*>
observers() {
return m_observers.value();}
81 [[nodiscard]] QBindable<QList<Weather::Observer*>>
bindableObservers()
const {
return &m_observers;}
88 QMap<QString,Weather::Observer*> m_observersByID;
93 QProperty<QList<Weather::Observer*>> m_unsortedObservers;
97 QProperty<QList<Weather::Observer*>> m_observers;
Up-to-date list of all METAR/TAF stations.
QList< Weather::Observer * > observers()
Getter method for property of the same name.
QList< Weather::Observer * > observers
List of METAR/TAF stations.
QBindable< QList< Weather::Observer * > > bindableObservers() const
Getter method for property of the same name.
~ObserverList() override=default
Standard destructor.
ObserverList(QObject *parent=nullptr)
Standard constructor.