Advertisement
Guest User

Untitled

a guest
May 25th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. Содержимое файла main.cpp:
  2.  
  3. #include "mainwindow.h"
  4. #include <QApplication>
  5.  
  6. int main(int argc, char *argv[])
  7. {
  8. QApplication a(argc, argv);
  9. MainWindow w;
  10. w.show();
  11.  
  12. return a.exec();
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement