Hardware Design: SIE
Sign in or create your account | Project List | Help
Hardware Design: SIE Git Source Tree
Root/
| 1 | #ifndef OPTIONSDIALOG_H |
| 2 | #define OPTIONSDIALOG_H |
| 3 | |
| 4 | #include <QDialog> |
| 5 | |
| 6 | namespace Ui { |
| 7 | class optionsDialog; |
| 8 | } |
| 9 | |
| 10 | class optionsDialog : public QDialog { |
| 11 | Q_OBJECT |
| 12 | public: |
| 13 | optionsDialog(QWidget *parent = 0); |
| 14 | ~optionsDialog(); |
| 15 | |
| 16 | protected: |
| 17 | void changeEvent(QEvent *e); |
| 18 | |
| 19 | private: |
| 20 | Ui::optionsDialog *ui; |
| 21 | }; |
| 22 | |
| 23 | #endif // OPTIONSDIALOG_H |
| 24 |
Branches:
master
