options.cpp 671 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #include "options.h"
  2. #include <QApplication>
  3. Options::Options(QString joueur1, QString joueur2, int temps, QObject *parent) :
  4. QObject(parent),
  5. _tempsDepart(temps),
  6. _nomJoueur1 (joueur1),
  7. _nomJoueur2 (joueur2)
  8. {
  9. }
  10. Options::~Options ()
  11. {
  12. }
  13. void Options::setNomJoueur1(QString joueur) {
  14. _nomJoueur1 = joueur;
  15. }
  16. void Options::setNomJoueur2(QString joueur) {
  17. _nomJoueur2 = joueur;
  18. }
  19. void Options::setTempsDepart(int temps) {
  20. _tempsDepart = temps;
  21. }
  22. QString Options::nomJoueur1() const {
  23. return _nomJoueur1;
  24. }
  25. QString Options::nomJoueur2() const {
  26. return _nomJoueur2;
  27. }
  28. int Options::tempsDepart() const {
  29. return _tempsDepart;
  30. }