TSI_Config/pointname.h

32 lines
489 B
C
Raw Normal View History

2025-04-27 10:05:00 +08:00
#ifndef POINTNAME_H
#define POINTNAME_H
#include <QWidget>
#include "data_config.h"
namespace Ui {
class PointName;
}
class PointName : public QWidget
{
Q_OBJECT
public:
explicit PointName(int slot_no_,int cardtype,QWidget *parent = nullptr);
~PointName();
int slot_no;
CardType car_type;
private slots:
void on_pushButton_cancel_clicked();
void on_pushButton_confirm_clicked();
private:
Ui::PointName *ui;
void Init();
};
#endif // POINTNAME_H