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,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