forked from p54670231/Idea
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.
27 lines
469 B
27 lines
469 B
#ifndef COMMUNICATION_QUESTION_H
|
|
#define COMMUNICATION_QUESTION_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class Communication_question;
|
|
}
|
|
|
|
class Communication_question : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Communication_question(QWidget *parent = 0);
|
|
~Communication_question();
|
|
void set_background2();
|
|
Ui::Communication_question *ui;
|
|
|
|
private slots:
|
|
void on_back_clicked();
|
|
|
|
|
|
};
|
|
|
|
#endif // COMMUNICATION_QUESTION_H
|