TSI_Config/setpoint.h

23 lines
273 B
C
Raw Normal View History

2024-12-18 17:14:41 +08:00
#ifndef setpoint_H
#define setpoint_H
2024-12-17 18:53:41 +08:00
#include <QWidget>
namespace Ui {
2024-12-18 17:14:41 +08:00
class Setpoint;
2024-12-17 18:53:41 +08:00
}
2024-12-18 17:14:41 +08:00
class Setpoint : public QWidget
2024-12-17 18:53:41 +08:00
{
Q_OBJECT
public:
2024-12-18 17:14:41 +08:00
explicit Setpoint(QWidget *parent = nullptr);
~Setpoint();
2024-12-17 18:53:41 +08:00
private:
2024-12-18 17:14:41 +08:00
Ui::Setpoint *ui;
2024-12-17 18:53:41 +08:00
};
2024-12-18 17:14:41 +08:00
#endif // setpoint_H