Add skeleton for panel
This commit is contained in:
parent
c8c266de0b
commit
e0efbacd09
4 changed files with 63 additions and 0 deletions
22
sea_transport/skipperpanel.h
Normal file
22
sea_transport/skipperpanel.h
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#ifndef SKIPPERPANEL_H
|
||||
#define SKIPPERPANEL_H
|
||||
|
||||
#include <QMainWindow>
|
||||
|
||||
namespace Ui {
|
||||
class SkipperPanel;
|
||||
}
|
||||
|
||||
class SkipperPanel : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit SkipperPanel(QWidget *parent = nullptr);
|
||||
~SkipperPanel();
|
||||
|
||||
private:
|
||||
Ui::SkipperPanel *ui;
|
||||
};
|
||||
|
||||
#endif // SKIPPERPANEL_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue