SkyPulse UAV V0.1
Loading...
Searching...
No Matches
handler_bmp180.h
Go to the documentation of this file.
1#ifndef HANDLER_BMP180_H
2#define HANDLER_BMP180_H
3
4#include "DataHandler.h"
5#include "MediatorInterface.h"
6#include <QObject>
7
8class Handler_BMP180 : public QObject, public DataHandler
9{
10 Q_OBJECT
11
12public:
14 void handleData(const QByteArray &data) override;
15
16private:
17 MediatorInterface *mediator;
18
19signals:
20 void dataProcessed(const QString &result);
21
22};
23
24#endif // HANDLER_BMP180_H
Definition DataHandler.h:6
Definition handler_bmp180.h:9
void dataProcessed(const QString &result)
void handleData(const QByteArray &data) override
Definition handler_bmp180.cpp:6
Handler_BMP180(MediatorInterface *mediator)
Definition handler_bmp180.cpp:4
Definition MediatorInterface.h:6