6a7df95ef3611817078e1aff0cf36108d8250e0c
[speedfreak] / Client / registration.h
1 #ifndef REGISTRATION_H
2 #define REGISTRATION_H
3
4 #include <QDialog>
5
6 namespace Ui {
7     class Registration;
8 }
9
10 class Registration : public QDialog {
11     Q_OBJECT
12 public:
13     Registration(QWidget *parent = 0);
14     ~Registration();
15
16 protected:
17     void changeEvent(QEvent *e);
18
19 private:
20     Ui::Registration *ui;
21
22 private slots:
23     void on_cancelPushButton_clicked();
24     void on_registratePushButton_clicked();
25 };
26
27 #endif // REGISTRATION_H
28