| 123456789101112131415161718192021222324252627282930313233 |
- #ifndef DIALOGSETTING_H
- #define DIALOGSETTING_H
- #include <QDialog>
- #include <QSettings>
- namespace Ui {
- class DialogSetting;
- }
- class DialogSetting : public QDialog
- {
- Q_OBJECT
- public:
- explicit DialogSetting(QWidget *parent = nullptr);
- ~DialogSetting();
- private slots:
- void on_pushButton_Set_clicked();
- void on_pushButton_Close_clicked();
- private:
- Ui::DialogSetting *ui;
- std::string mstrserverip;
- std::string mstrserverport;
- std::string mstrinterval;
- std::string mstrVIN;
- };
- #endif // DIALOGSETTING_H
|