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.
29 lines
363 B
29 lines
363 B
#ifndef ORDEROOM_H
|
|
#define ORDEROOM_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class orderoom;
|
|
}
|
|
|
|
class orderoom : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit orderoom(QWidget *parent = nullptr);
|
|
~orderoom();
|
|
|
|
private slots:
|
|
void on_pushButton_2_clicked();
|
|
|
|
private:
|
|
Ui::orderoom *ui;
|
|
|
|
signals:
|
|
void ordersuccess();
|
|
};
|
|
|
|
#endif // ORDEROOM_H
|