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.

21 lines
294 B

#include "orderoom.h"
#include "ui_orderoom.h"
orderoom::orderoom(QWidget *parent) :
QWidget(parent),
ui(new Ui::orderoom)
{
ui->setupUi(this);
}
orderoom::~orderoom()
{
delete ui;
}
void orderoom::on_pushButton_2_clicked()
{
emit ordersuccess();
this->close();
}