Add panel for worker-type users

This commit is contained in:
E. Kozlovskaya 2021-01-05 16:39:02 +07:00
parent e7fafdc1e2
commit e7be0f23d6
4 changed files with 122 additions and 3 deletions

14
iFacility/workerpanel.cpp Normal file
View file

@ -0,0 +1,14 @@
#include "workerpanel.h"
#include "ui_workerpanel.h"
WorkerPanel::WorkerPanel(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::WorkerPanel)
{
ui->setupUi(this);
}
WorkerPanel::~WorkerPanel()
{
delete ui;
}