23 lines
337 B
C++
23 lines
337 B
C++
#ifndef P07_CYLINDERPAGE_H
|
|
#define P07_CYLINDERPAGE_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class P07_CylinderPage;
|
|
}
|
|
|
|
class P07_CylinderPage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit P07_CylinderPage(QWidget *parent = nullptr);
|
|
~P07_CylinderPage();
|
|
|
|
private:
|
|
Ui::P07_CylinderPage *ui;
|
|
};
|
|
|
|
#endif // P07_CYLINDERPAGE_H
|