From 73b94edb2f7e69cd2e3ebd551cd34d3cb32bc228 Mon Sep 17 00:00:00 2001 From: p54670231 Date: Thu, 8 Jul 2021 10:12:45 +0800 Subject: [PATCH] ADD file via upload --- src/communication.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/communication.h 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