SkyPulse UAV V0.1
Loading...
Searching...
No Matches
observable.h
Go to the documentation of this file.
1#ifndef OBSERVABLE_H
2#define OBSERVABLE_H
3
4#include <QObject>
5
6class Observable : public QObject
7{
8 Q_OBJECT
9
10public:
11 explicit Observable(QObject *parent = nullptr);
12
13signals:
14 void notifyObservers(const QString &message);
15
16};
17
18#endif // OBSERVABLE_H
Definition observable.h:8
void notifyObservers(const QString &message)
Observable(QObject *parent=nullptr)
Definition observable.cpp:3