Add skeleton for panel

This commit is contained in:
Andrew nuark G 2020-12-27 19:47:23 +07:00
parent c8c266de0b
commit e0efbacd09
4 changed files with 63 additions and 0 deletions

View 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;
}