Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #ifndef enterChat_H
  2. #define enterChat_H
  3.  
  4. #include <QDialog>
  5. #include <QtCore>
  6. #include <QtNetwork>
  7.  
  8. namespace Ui {
  9. class enterChat;
  10. }
  11.  
  12. class enterChat : public QDialog
  13. {
  14.     Q_OBJECT
  15.  
  16. public:
  17.     explicit enterChat(QWidget *parent = nullptr);
  18.     ~enterChat();
  19.  
  20. private slots:
  21.     //void on_pushButton_clicked();
  22.  
  23. private:
  24.     Ui::enterChat *ui;
  25. };
  26.  
  27. #endif // enterChat_H
  28.  
  29. #include "enterchat.h"
  30. #include "ui_enterchat.h"
  31.  
  32. enterChat::enterChat(QWidget *parent) :
  33.     QDialog(parent),
  34.     ui(new Ui::enterChat)
  35. {
  36.     ui->setupUi(this);
  37. }
  38.  
  39. enterChat::~enterChat()
  40. {
  41.     delete ui;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement