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

22
iFacility/workerpanel.h Normal file
View file

@ -0,0 +1,22 @@
#ifndef WORKERPANEL_H
#define WORKERPANEL_H
#include <QMainWindow>
namespace Ui {
class WorkerPanel;
}
class WorkerPanel : public QMainWindow
{
Q_OBJECT
public:
explicit WorkerPanel(QWidget *parent = nullptr);
~WorkerPanel();
private:
Ui::WorkerPanel *ui;
};
#endif // WORKERPANEL_H