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 28
|
// This file is generated by kconfig_compiler from 802-3-ethernet.kcfg.
// All changes you do to this file will be lost.
#include "802-3-ethernet.h"
using namespace Knm;
WiredSetting::WiredSetting() : Setting(Setting::Wired),
mPort(WiredSetting::EnumPort::mii),
mSpeed(0),
mDuplex(WiredSetting::EnumDuplex::full),
mAutonegotiate(true),
mMtu(0)
{
}
WiredSetting::~WiredSetting()
{
}
QString WiredSetting::name() const
{
return QLatin1String("802-3-ethernet");
}
bool WiredSetting::hasSecrets() const
{
return false;
}
|