This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
YASMIN/ui/debug/PlotGPS.h
k-a-z-u bb974d3871 added c++11 fixes
removed old components
disabled activity (for compiling reasons)
added wifi 2.4ghz hack
2018-07-11 13:23:18 +02:00

34 lines
415 B
C++

#ifndef PLOTGPS_H
#define PLOTGPS_H
#include <QWidget>
#include "../misc/fixc11.h"
#include "../sensors/GPSSensor.h"
#include <Indoor/data/Timestamp.h>
class PlotGPS : public QWidget {
Q_OBJECT
private:
GPSData gpsData;
public:
explicit PlotGPS(QWidget *parent = 0);
void add(const Timestamp ts, const GPSData& data);
signals:
public slots:
void paintEvent(QPaintEvent*);
};
#endif // PLOTGPS_H