110VCGQ/485SWJ/CGQ485V2/CGQ485/userhelp.h

28 lines
386 B
C
Raw Normal View History

2024-11-18 10:09:39 +08:00
#ifndef USERHELP_H
#define USERHELP_H
#include <QDialog>
namespace Ui {
class UserHelp;
}
class UserHelp : public QDialog
{
Q_OBJECT
public:
explicit UserHelp(QWidget *parent = nullptr);
~UserHelp();
private slots:
void on_toolBox_currentChanged(int index);
void on_tabWidget_currentChanged(int index);
private:
Ui::UserHelp *ui;
};
#endif // USERHELP_H