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.
26 lines
362 B
26 lines
362 B
#ifndef RECEPTIONIST_H
|
|
#define RECEPTIONIST_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
namespace Ui {
|
|
class receptionist;
|
|
}
|
|
|
|
class receptionist : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit receptionist(QWidget *parent = nullptr);
|
|
~receptionist();
|
|
|
|
private:
|
|
Ui::receptionist *ui;
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *e);
|
|
};
|
|
|
|
#endif // RECEPTIONIST_H
|