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