Advertisement
paranid5

main

Mar 4th, 2021 (edited)
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include "degree.h"
  2.  
  3. int main(int argc, char *argv[])
  4. {
  5.     QApplication app(argc, argv);
  6.  
  7.     auto* window = new QWidget;
  8.     window.resize(1600, 800);
  9.     window.setWindowTitle("Plus minus");
  10.     window.show();
  11.  
  12.     Degree painter(window);
  13.     painter.draw();
  14.  
  15.     return app.exec();
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement