You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
473 B
28 lines
473 B
1 year ago
|
#ifndef IPV4SETTINGSTAB_H
|
||
|
#define IPV4SETTINGSTAB_H
|
||
|
|
||
|
#include "qvarianthelper.h"
|
||
|
#include "connectionsettingsengine.h"
|
||
|
#include <QWidget>
|
||
|
|
||
|
namespace Ui {
|
||
|
class Ipv4SettingsTab;
|
||
|
}
|
||
|
|
||
|
class Ipv4SettingsTab : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit Ipv4SettingsTab(QWidget *parent = nullptr);
|
||
|
~Ipv4SettingsTab();
|
||
|
|
||
|
QVariantMap readSettings();
|
||
|
void loadSettings(QVariantMap settings);
|
||
|
|
||
|
private:
|
||
|
Ui::Ipv4SettingsTab *ui;
|
||
|
};
|
||
|
|
||
|
#endif // IPV4SETTINGSTAB_H
|