1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
// This file is generated by kconfig_compiler from ipv4.kcfg.
// All changes you do to this file will be lost.
#include "ipv4.h"
using namespace Knm;
Ipv4Setting::Ipv4Setting() : Setting(Setting::Ipv4),
mMethod(Ipv4Setting::EnumMethod::Automatic),
mIgnoredhcpdns(false),
mIgnoreautoroute(false),
mNeverdefault(false)
{
}
Ipv4Setting::~Ipv4Setting()
{
}
QString Ipv4Setting::name() const
{
return QLatin1String("ipv4");
}
bool Ipv4Setting::hasSecrets() const
{
return false;
}
|