APVQuiz  1
A multiplayer multithreaded quizzing application
signupdialog.h
Go to the documentation of this file.
1 
9 #ifndef SIGNUPDIALOG_H
10 #define SIGNUPDIALOG_H
11 
12 #include <QDialog>
13 #include "mainwindow.h"
14 namespace Ui {
15 class SignUpDialog;
16 }
17 
23 class SignUpDialog : public QDialog
24 {
25  Q_OBJECT
26 
27 public:
33  explicit SignUpDialog(QWidget *parent = 0);
34 
40  ~SignUpDialog();
41 
42 private slots:
50  void on_continuePushButton_clicked();
51 
52 private:
53  Ui::SignUpDialog *ui;
54  Mainwindow *mw;
55 };
56 
57 #endif // SIGNUPDIALOG_H
Definition: contribute.h:16
SignUpDialog class.
Definition: signupdialog.h:23
manages the openning main window
SignUpDialog(QWidget *parent=0)
Constructor for sign up dialog.
Definition: signupdialog.cpp:21
~SignUpDialog()
Destructor for signup dialog.
Definition: signupdialog.cpp:28
Mainwindow class.
Definition: mainwindow.h:26