Advertisement
Guest User

MainWindow.h

a guest
Nov 3rd, 2013
383
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3.  
  4. #include <QMainWindow>
  5.  
  6. namespace Ui {
  7.     class MainWindow;
  8. }
  9.  
  10. class MainWindow : public QMainWindow
  11. {
  12.     Q_OBJECT
  13.  
  14.     public:
  15.  
  16.         MainWindow();
  17.         virtual ~MainWindow();
  18.  
  19.     private:
  20.  
  21.         Ui::MainWindow * const ui;
  22. };
  23.  
  24. #endif // CMAINWINDOW_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement