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.
31 lines
446 B
31 lines
446 B
#ifndef COMMUNICATION_H
|
|
#define COMMUNICATION_H
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
namespace Ui {
|
|
class Communication;
|
|
}
|
|
|
|
class Communication : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Communication(QWidget *parent = 0);
|
|
~Communication();
|
|
void set_background();
|
|
|
|
private slots:
|
|
void on_back_to_home_clicked();
|
|
|
|
void on_publish_clicked();
|
|
void change_clicked();
|
|
|
|
private:
|
|
Ui::Communication *ui;
|
|
};
|
|
|
|
#endif // COMMUNICATION_H
|