Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #include <QtGui/QApplication>
  2. #include "dialog.h"
  3.  
  4. int main(int argc, char *argv[])
  5. {
  6.     QApplication a(argc, argv);
  7.     Dialog w;
  8.     w.show();
  9.  
  10.     return a.exec();
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement