diff --git a/src/communication.h b/src/communication.h new file mode 100644 index 0000000..017750c --- /dev/null +++ b/src/communication.h @@ -0,0 +1,30 @@ +#ifndef COMMUNICATION_H +#define COMMUNICATION_H + +#include + + +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