1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-25 10:52:11 +01:00

16 lines
305 B
C
Raw Normal View History

2013-11-20 12:24:34 +01:00
#ifndef FLIGHTLOGDIALOG_H
#define FLIGHTLOGDIALOG_H
#include <QDialog>
2013-11-26 15:42:49 +01:00
#include "flightlogmanager.h"
2013-11-20 12:24:34 +01:00
2013-11-26 15:42:49 +01:00
class FlightLogDialog : public QDialog {
2013-11-20 12:24:34 +01:00
Q_OBJECT
public:
explicit FlightLogDialog(QWidget *parent, FlightLogManager *flightLogManager);
~FlightLogDialog();
};
#endif // FLIGHTLOGDIALOG_H