1 #ifndef CYLINDEREDITOR_H |
1 #pragma once |
2 #define CYLINDEREDITOR_H |
|
3 |
|
4 #include <QDialog> |
2 #include <QDialog> |
5 |
|
6 namespace Ui { |
|
7 class CylinderEditor; |
|
8 } |
|
9 |
3 |
10 class CylinderEditor : public QDialog |
4 class CylinderEditor : public QDialog |
11 { |
5 { |
12 Q_OBJECT |
6 Q_OBJECT |
13 |
7 |
14 public: |
8 public: |
15 explicit CylinderEditor(QWidget *parent = 0); |
9 explicit CylinderEditor(QWidget* parent = nullptr); |
16 ~CylinderEditor(); |
10 ~CylinderEditor(); |
17 |
11 |
18 private: |
12 private: |
19 Ui::CylinderEditor *ui; |
13 class Ui_CylinderEditor& ui; |
20 }; |
14 }; |
21 |
|
22 #endif // CYLINDEREDITOR_H |
|