main.cpp 659 B

12345678910111213141516171819202122232425262728293031
  1. #include <QApplication>
  2. #include <QDebug>
  3. #include "Informations.hpp"
  4. #include "Experiment.hpp"
  5. int
  6. main (int argc, char *argv[])
  7. {
  8. // QString fileToLoad = "";
  9. // QString fileToSave = "";
  10. QApplication app (argc, argv);
  11. /*Informations infos(fileToLoad, fileToSave);
  12. infos.show();
  13. app.exec();
  14. if((fileToLoad=="") || (fileToSave==""))
  15. qDebug() << "Erreur dans le formulaire de départ" << Qt::endl;
  16. else
  17. {
  18. qDebug() << "Chaine1 recue : " << fileToLoad << Qt::endl;
  19. qDebug() << "Chaine2 recue : " << fileToSave << Qt::endl;
  20. */
  21. Experiment window;
  22. window.show ();
  23. app.exec ();
  24. //}
  25. return 0;
  26. }