Advertisement
Anderbro

mainwindow.h

Jun 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3. #include <QMainWindow>
  4. #include <qlogging.h>
  5. namespace Ui {
  6. class MainWindow;
  7.  
  8. }
  9.  
  10. class MainWindow : public QMainWindow
  11. {
  12.     Q_OBJECT
  13.  
  14. public:
  15.     explicit MainWindow(QWidget *parent = 0);
  16.     ~MainWindow();
  17.  
  18. private slots:
  19.     void on_pushButton_2_clicked();
  20.  
  21. private:
  22.     Ui::MainWindow *ui;
  23.     login *windowe;
  24.  
  25. };
  26.  
  27. #endif // MAINWINDOW_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement