You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.cpp 237B

1234567891011121314151617
  1. //
  2. // Created by robin on 10/1/17.
  3. //
  4. #include <QApplication>
  5. #include <UI/MainWindow.h>
  6. int main(int argc, char* argv[])
  7. {
  8. QApplication app(argc, argv);
  9. MainWindow mainWindow;
  10. mainWindow.show();
  11. return app.exec();
  12. }