123456789101112131415161718192021222324252627282930 |
- #ifndef DIALOG_H
- #define DIALOG_H
- #include <QDialog>
- class QLineEdit;
- class QSpinBox;
- class QString;
- class Dialog : public QDialog
- {
- Q_OBJECT
- public:
- explicit Dialog(QString nom1, QString nom2, int tempsDepart, QWidget *parent = nullptr);
- ~Dialog();
- QString joueur1 () const;
- QString joueur2 () const;
- int tempsDepart () const;
- signals:
- public slots:
- private:
- QLineEdit* joueur1LineEdit;
- QLineEdit* joueur2LineEdit;
- QSpinBox* spinTempsDepart;
- };
- #endif // DIALOG_H
|