Add skeleton for panel
This commit is contained in:
parent
c8c266de0b
commit
e0efbacd09
4 changed files with 63 additions and 0 deletions
14
sea_transport/skipperpanel.cpp
Normal file
14
sea_transport/skipperpanel.cpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#include "skipperpanel.h"
|
||||
#include "ui_skipperpanel.h"
|
||||
|
||||
SkipperPanel::SkipperPanel(QWidget *parent) :
|
||||
QMainWindow(parent),
|
||||
ui(new Ui::SkipperPanel)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
SkipperPanel::~SkipperPanel()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue