summaryrefslogtreecommitdiffstats
path: root/knetworkconf/knetworkconf/kwirelessinterface.cpp
blob: c24d2374cd0135ffad82df8bc017164406e620a6 (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/***************************************************************************
                          kwirelessinterface  -  description
                             -------------------
    begin                : Thu oct 21 2004
    copyright            : (C) 2004 by Juan Luis Baptiste
    email                : juan.baptiste@kdemail.net
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/
#include "kwirelessinterface.h"

KWirelessInterface::KWirelessInterface()
 : KNetworkInterface()
{
}

KWirelessInterface::~KWirelessInterface()
{
}

QString KWirelessInterface::getEssid()
{
  return essid;
}

QString KWirelessInterface::getWepKey()
{
  return wepKey;
}

void KWirelessInterface::setWepKey(QString newKey)
{
  wepKey = newKey;
}
void KWirelessInterface::setEssid(QString newEssid)
{
  essid = newEssid;
}

QString KWirelessInterface::getKeyType()
{
  return keyType;
}

void KWirelessInterface::setKeyType(QString type)
{
    keyType = type;
}