mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-13 20:48:42 +01:00
21 lines
375 B
C
21 lines
375 B
C
|
#ifndef MODELUAVOPROXY_H
|
||
|
#define MODELUAVOPROXY_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include "flightdatamodel.h"
|
||
|
#include "pathaction.h"
|
||
|
#include "waypoint.h"
|
||
|
|
||
|
class modelUavoProxy:public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit modelUavoProxy(QObject *parent, flightDataModel *model);
|
||
|
public slots:
|
||
|
void modelToObjects();
|
||
|
void objectsToModel();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // MODELUAVOPROXY_H
|