Add panel for worker-type users
This commit is contained in:
parent
e7fafdc1e2
commit
e7be0f23d6
4 changed files with 122 additions and 3 deletions
14
iFacility/workerpanel.cpp
Normal file
14
iFacility/workerpanel.cpp
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue