mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-26 11:52:10 +01:00
18 lines
305 B
C++
18 lines
305 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
|