mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-10 20:52:11 +01:00
17 lines
304 B
C
17 lines
304 B
C
|
#ifndef FLIGHTLOGDIALOG_H
|
||
|
#define FLIGHTLOGDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include"flightlogmanager.h"
|
||
|
|
||
|
class FlightLogDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit FlightLogDialog(QWidget *parent, FlightLogManager *flightLogManager);
|
||
|
~FlightLogDialog();
|
||
|
};
|
||
|
|
||
|
#endif // FLIGHTLOGDIALOG_H
|