Guest User

Untitled

a guest
May 24th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #include <QApplication>
  2. #include <QWidget>
  3.  
  4.  
  5. #include "window.h"
  6.  
  7. int main(int argc, char *argv[])
  8. {
  9.     QApplication app(argc, argv);
  10.     Window window;
  11.     window.resize(400, 300);
  12.     window.setWindowTitle("Tits & Beer");
  13.     window.show();
  14.        return app.exec();
  15. }
Add Comment
Please, Sign In to add comment