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.
33 lines
453 B
33 lines
453 B
#ifndef CELLSTATUS_H
|
|
#define CELLSTATUS_H
|
|
|
|
#include <QWidget>
|
|
#include "orderoom.h"
|
|
|
|
namespace Ui {
|
|
class cellstatus;
|
|
}
|
|
|
|
class cellstatus : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit cellstatus(QWidget *parent = nullptr);
|
|
~cellstatus();
|
|
|
|
private slots:
|
|
void on_pushButton_clicked();
|
|
|
|
void on_pushButton_2_clicked();
|
|
|
|
void onordersuccess();
|
|
|
|
private:
|
|
Ui::cellstatus *ui;
|
|
|
|
orderoom *m_order;
|
|
};
|
|
|
|
#endif // CELLSTATUS_H
|