Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }