Advertisement
Guest User

main.cpp

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