Profile dialog added.
[speedfreak] / Client / profiledialog.h
1 #ifndef PROFILEDIALOG_H
2 #define PROFILEDIALOG_H
3
4 #include <QDialog>
5
6 namespace Ui {
7     class ProfileDialog;
8 }
9
10 class ProfileDialog : public QDialog {
11     Q_OBJECT
12 public:
13     ProfileDialog(QWidget *parent = 0);
14     ~ProfileDialog();
15
16 protected:
17     void changeEvent(QEvent *e);
18
19 private:
20     Ui::ProfileDialog *ui;
21 };
22
23 #endif // PROFILEDIALOG_H