You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef _H_QSETTINGDLG_H_
|
|
#define _H_QSETTINGDLG_H_
|
|
|
|
#include <QWidget>
|
|
#include "ui_QSettingDlg.h"
|
|
|
|
class QSettingDlg : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QSettingDlg(QWidget *parent = Q_NULLPTR);
|
|
~QSettingDlg();
|
|
|
|
private:
|
|
Ui::QSettingDlg ui;
|
|
};
|
|
|
|
#endif
|