parent
c2db5efd0e
commit
73b94edb2f
@ -0,0 +1,30 @@
|
||||
#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
|
||||
Loading…
Reference in new issue