initial commit to split repos

This commit is contained in:
2025-05-28 15:54:31 +02:00
parent 1582368303
commit bdcdf65432
52 changed files with 2027 additions and 0 deletions

23
mvc/data/waypoint.h Normal file
View File

@@ -0,0 +1,23 @@
#ifndef WAYPOINT_H
#define WAYPOINT_H
#include "weatherdata.h"
#include <QObject>
class Waypoint : public QObject {
Q_OBJECT
public:
explicit Waypoint(QObject *parent = nullptr);
Waypoint(const double latitude, const double longitude);
Waypoint(const double latitude, const double longitude, WeatherData &data);
Waypoint(const double latitude, const double longitude, const double altitude,
WeatherData &data);
private:
double m_latitude;
double m_longitude;
double m_altitude;
WeatherData m_data;
};
#endif // WAYPOINT_H