123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef SHOWAIRCRAFTLIST_H
- #define SHOWAIRCRAFTLIST_H
- #include <QDialog>
- namespace Ui {
- class ShowAircraftList;
- }
- class ShowAircraftList : public QDialog
- {
- Q_OBJECT
- public:
- explicit ShowAircraftList(QWidget *parent = nullptr);
- ~ShowAircraftList();
- private slots:
- void on_closeButton_clicked();
- private:
- Ui::ShowAircraftList *ui;
- };
- #endif
|