Advertisement
WildReanimator

main.cpp

Nov 23rd, 2012
840
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <QtGui/QApplication>
  2. #include "window.h"
  3.  
  4. int main(int argc, char *argv[])
  5. {
  6.     QApplication a(argc, argv);
  7.     Window w;
  8.     w.show();
  9.    
  10.     return a.exec();
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement