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