mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-09 20:46:07 +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
|