You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
329 B
23 lines
329 B
#ifndef ADMINISTRATION_H
|
|
#define ADMINISTRATION_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
namespace Ui {
|
|
class administration;
|
|
}
|
|
|
|
class administration : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit administration(QWidget *parent = nullptr);
|
|
~administration();
|
|
|
|
private:
|
|
Ui::administration *ui;
|
|
};
|
|
|
|
#endif // ADMINISTRATION_H
|