Advertisement
Guest User

main.cpp

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