mirror of
https://github.com/Indy970/QtHPConnect
synced 2024-12-27 21:59:29 +01:00
22 lines
291 B
C++
22 lines
291 B
C++
#ifndef DLGSETTINGS_H
|
|
#define DLGSETTINGS_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class dlgSettings;
|
|
}
|
|
|
|
class dlgSettings : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit dlgSettings(QWidget *parent = 0);
|
|
~dlgSettings();
|
|
|
|
private:
|
|
Ui::dlgSettings *ui;
|
|
};
|
|
|
|
#endif // DLGSETTINGS_H
|