- added settingsdialog
[buliscores] / src / settingsdialog.h
1 #ifndef SETTINGSDIALOG_H
2 #define SETTINGSDIALOG_H
3
4 #include <QDialog>
5 #include <QCloseEvent>
6
7 namespace Ui {
8     class SettingsDialog;
9 }
10
11 class SettingsDialog : public QDialog
12 {
13     Q_OBJECT
14
15 public:
16     explicit SettingsDialog(QWidget *parent = 0);
17     ~SettingsDialog();
18
19 protected:
20     void closeEvent(QCloseEvent);
21
22 private:
23     Ui::SettingsDialog *ui;
24 };
25
26 #endif // SETTINGSDIALOG_H