mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-13 20:48:42 +01:00
24 lines
353 B
C
24 lines
353 B
C
|
#ifndef MAINWINDOW_H
|
||
|
#define MAINWINDOW_H
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
|
||
|
namespace Ui {
|
||
|
class MainWindow;
|
||
|
}
|
||
|
|
||
|
class MainWindow : public QMainWindow {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
MainWindow(QWidget *parent = 0);
|
||
|
~MainWindow();
|
||
|
|
||
|
protected:
|
||
|
void changeEvent(QEvent *e);
|
||
|
|
||
|
private:
|
||
|
Ui::MainWindow *ui;
|
||
|
};
|
||
|
|
||
|
#endif // MAINWINDOW_H
|