options.cpp 873 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #include "options.h"
  2. #include <QApplication>
  3. #include <QTime>
  4. #include <QString>
  5. #include <QObject>
  6. Options::Options(QString joueur1, QString joueur2, QTime const& temps, bool son, QObject *parent) :
  7. QObject(parent),
  8. _tempsDepart(temps),
  9. _nomJoueur1 (joueur1),
  10. _nomJoueur2 (joueur2),
  11. _son (son)
  12. {
  13. }
  14. Options::~Options ()
  15. {
  16. }
  17. void Options::setNomJoueur1(QString joueur) {
  18. _nomJoueur1 = joueur;
  19. }
  20. void Options::setNomJoueur2(QString joueur) {
  21. _nomJoueur2 = joueur;
  22. }
  23. void Options::setTempsDepart(QTime const& temps) {
  24. _tempsDepart = temps;
  25. }
  26. void Options::setSon (bool son) {
  27. _son = son;
  28. }
  29. QString Options::nomJoueur1() const {
  30. return _nomJoueur1;
  31. }
  32. QString Options::nomJoueur2() const {
  33. return _nomJoueur2;
  34. }
  35. QTime Options::tempsDepart() const {
  36. return _tempsDepart;
  37. }
  38. bool Options::son() const {
  39. return _son;
  40. }